00001 00002 00008 00010 00011 00012 #ifndef __OSESSAME_COMMAND_H__ 00013 #define __OSESSAME_COMMAND_H__ 00014 00015 using namespace O_SESSAME; 00016 00017 namespace O_SESSAME { 00018 00024 class Command 00025 { 00026 public: 00027 virtual ~Command(); 00028 00029 virtual void Execute() = 0; 00030 protected: 00031 Command(); 00032 00033 private: 00034 00035 }; 00036 } // close namespace O_SESSAME 00037 00038 #endif 00039 00040 00041 // Do not change the comments below - they will be added automatically by CVS 00042 /***************************************************************************** 00043 * $Log: AttitudeHistory.h,v $ 00044 * 00045 ******************************************************************************/