#include <AxeThing.h>
Public Member Functions | |
AxeThing () | |
~AxeThing () | |
void | setDescription (std::string aDescription) |
std::string | getDescription () |
void | setLength (int aLength) |
int | getLength () |
Private Attributes | |
std::string | description |
int | length |
Definition at line 11 of file AxeThing.h.
AxeThing::AxeThing | ( | ) |
AxeThing::~AxeThing | ( | ) |
std::string AxeThing::getDescription | ( | ) |
Definition at line 41 of file AxeThing.cxx.
References description.
00042 { 00043 return description; 00044 }
int AxeThing::getLength | ( | ) |
void AxeThing::setDescription | ( | std::string | aDescription | ) |
Definition at line 36 of file AxeThing.cxx.
References description.
Referenced by OutlineModelManager::createAxe().
00037 { 00038 description = aDescription; 00039 }
void AxeThing::setLength | ( | int | aLength | ) |
Definition at line 46 of file AxeThing.cxx.
References length.
00047 { 00048 length = aLength; 00049 }
std::string AxeThing::description [private] |
int AxeThing::length [private] |