00001 #include <vector> 00002 #include <iostream> 00003 00004 //---------------------------------------------------------------------------------------------------------------- 00005 // Class definition include 00006 //---------------------------------------------------------------------------------------------------------------- 00007 #include "CommandObject.h" 00008 00009 //---------------------------------------------------------------------------------------------------------------- 00010 // Class implementation 00011 //---------------------------------------------------------------------------------------------------------------- 00014 //------------------------------------------------------------------------------------------------------------ 00015 // Constructors & Destructors 00016 //------------------------------------------------------------------------------------------------------------ 00017 00018 /* 00019 * Creates a command with the given text 00020 * @param aText Is the text to assign to the command 00021 * @return Returns the created commandObject pointer 00022 */ 00023 CommandObject :: CommandObject(/*std::string aText*/) 00024 { 00025 //setText(aText); 00026 } 00027 00028 /* 00029 * Destroys the command 00030 */ 00031 CommandObject :: ~CommandObject() 00032 { 00033 00034 } 00035 00036 //------------------------------------------------------------------------------------------------------------ 00037 // Methods 00038 //-------------------------------------------------------------------------------------------- 00039 00040