Index: shell/src/Command.h |
=================================================================== |
--- a/shell/src/Command.h |
+++ b/shell/src/Command.h |
@@ -1,3 +1,4 @@ |
+ |
Felix Dahlke
2013/03/27 08:18:26
Gosh, missed that. Removed it :)
|
#ifndef COMMAND_H |
#define COMMAND_H |
@@ -15,6 +16,9 @@ |
virtual void operator()(const std::string& arguments) = 0; |
virtual std::string GetDescription() const = 0; |
virtual std::string GetUsage() const = 0; |
+ |
+protected: |
+ void ShowUsage() const; |
}; |
typedef std::map<const std::string, Command*> CommandMap; |