//---------------------------------------------------------------------------------------------------------------- // Class definition include //---------------------------------------------------------------------------------------------------------------- #include "AxeThing.h" //---------------------------------------------------------------------------------------------------------------- // Class implementation //---------------------------------------------------------------------------------------------------------------- /** @file AxeThing.cxx */ //------------------------------------------------------------------------------------------------------------ // Constructors & Destructors //------------------------------------------------------------------------------------------------------------ /* * Creates an AxeThing */ AxeThing :: AxeThing() { } /* * Destroys an AxeThing */ AxeThing :: ~AxeThing() { } //------------------------------------------------------------------------------------------------------------ // Methods //------------------------------------------------------------------------------------------------------------ void AxeThing :: setDescription(std::string aDescription) { description = aDescription; } std::string AxeThing :: getDescription() { return description; } void AxeThing :: setLength(int aLength) { length = aLength; } int AxeThing :: getLength() { return length; }