00001 #ifndef __CLIPARSER_H 00002 #define __CLIPARSER_H 00003 00004 class CliParser : public CommandParser { 00005 public: 00006 CliParser(CommandProcessor*); 00007 Command* parse(string input); 00008 }; 00009 00010 #endif 00011