00001 #ifndef __SERVICEENTRYCOMMAND_H 00002 #define __SERVICEENTRYCOMMAND_H 00003 00004 class ServiceEntryCommand : public Command { 00005 public: 00006 ServiceEntryCommand(); 00007 virtual void run(std::ostream&); 00008 virtual string getCommandString(); 00009 virtual void getHtmlInterface(std::ostream&); 00010 virtual void getHelp(std::ostream&); 00011 private: 00012 ServiceEntry* m_serviceEntry; 00013 }; 00014 00015 #endif