00001 #ifndef __TIMERCOMMAND_H 00002 #define __TIMERCOMMAND_H 00003 00004 const static string timerCommandString = "timer"; 00005 00006 class TimerCommand : public Command { 00007 public: 00008 virtual void run(std::ostream&); 00009 virtual string getCommandString(); 00010 }; 00011 00012 00013 #endif 00014