blob: f6f91a3eaf95cc2a69041d9b9eff98d8be5ee2d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
* ConsoleCommand.h
*
* Created on: Feb 1, 2012
* Author: Simon
*/
#ifndef CONSOLECOMMAND_H_
#define CONSOLECOMMAND_H_
class ConsoleCommand
{
public:
ConsoleCommand(std::string command, int returnStatus, std::string returnValue):
Command(command), ReturnStatus(returnStatus), ReturnValue(returnValue)
{
}
std::string Command;
int ReturnStatus;
std::string ReturnValue;
};
#endif /* CONSOLECOMMAND_H_ */
|