#include #include //---------------------------------------------------------------------------------------------------------------- // Class definition include //---------------------------------------------------------------------------------------------------------------- #include "CommandObject.h" //---------------------------------------------------------------------------------------------------------------- // Class implementation //---------------------------------------------------------------------------------------------------------------- /** @file TestOutline.cxx */ //------------------------------------------------------------------------------------------------------------ // Constructors & Destructors //------------------------------------------------------------------------------------------------------------ /* * Creates a command with the given text * @param aText Is the text to assign to the command * @return Returns the created commandObject pointer */ CommandObject :: CommandObject(/*std::string aText*/) { //setText(aText); } /* * Destroys the command */ CommandObject :: ~CommandObject() { } //------------------------------------------------------------------------------------------------------------ // Methods //------------------------------------------------------------------------------------------------------------