summaryrefslogtreecommitdiff
path: root/src/console/ConsoleCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/console/ConsoleCommand.h')
-rw-r--r--src/console/ConsoleCommand.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/console/ConsoleCommand.h b/src/console/ConsoleCommand.h
new file mode 100644
index 0000000..f6f91a3
--- /dev/null
+++ b/src/console/ConsoleCommand.h
@@ -0,0 +1,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_ */