00001 #ifndef FED_COMMAND 00002 #define FED_COMMAND 00003 00004 #include "dim/dis.hxx" 00005 namespace ztt { namespace dcs { 00006 00010 class FedCommand:public DimCommand{ 00011 public: 00017 FedCommand(char* name,char* format,DimCommandHandler* handle):DimCommand(name,format,handle){}; 00021 virtual ~FedCommand(){}; 00026 virtual bool handleCommand()=0; 00032 virtual bool setAnswerData(const int& ID)=0; 00033 00034 }; 00035 00036 }} 00037 #endif 00038