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