#ifndef COMMAND_SET_H #define COMMAND_SET_H #include #include class CommandSet { public: CommandSet(); virtual ~CommandSet(); void addCommand( class Command *pCmd ); private: typedef Bu::List CommandList; CommandList lCommand; }; #endif