]> Creatis software - creaContours.git/blob - lib/kernel_ManagerContour_NDimensions/AxeThing.cxx
4a4ab8bd10ab4c9d24bd85c35b382771db617c19
[creaContours.git] / lib / kernel_ManagerContour_NDimensions / AxeThing.cxx
1
2 //----------------------------------------------------------------------------------------------------------------
3 // Class definition include
4 //----------------------------------------------------------------------------------------------------------------
5 #include "AxeThing.h"
6
7 //----------------------------------------------------------------------------------------------------------------
8 // Class implementation
9 //----------------------------------------------------------------------------------------------------------------
10 /** @file AxeThing.cxx */
11
12 //------------------------------------------------------------------------------------------------------------
13 // Constructors & Destructors
14 //------------------------------------------------------------------------------------------------------------
15
16         /*
17         * Creates an AxeThing
18         */
19         AxeThing :: AxeThing()
20         {
21
22         }
23
24         /*
25         * Destroys an AxeThing
26         */
27         AxeThing :: ~AxeThing()
28         {
29
30         }
31
32 //------------------------------------------------------------------------------------------------------------
33 // Methods
34 //------------------------------------------------------------------------------------------------------------
35
36         void AxeThing :: setDescription(std::string aDescription)
37         {
38                 description = aDescription;
39         }
40
41         std::string AxeThing :: getDescription()
42         {
43                 return description;
44         }
45
46         void AxeThing :: setLength(int aLength)
47         {
48                 length = aLength;
49         }
50
51         int AxeThing :: getLength()
52         {
53                 return length;
54         }