]> Creatis software - creaContours.git/blob - lib/kernel_ManagerContour_NDimensions/CommandObject.cxx
31ccd7217a3110f1fe8abd4bbe3610b0e326a39b
[creaContours.git] / lib / kernel_ManagerContour_NDimensions / CommandObject.cxx
1 #include <vector>
2 #include <iostream>
3
4 //----------------------------------------------------------------------------------------------------------------
5 // Class definition include
6 //----------------------------------------------------------------------------------------------------------------
7 #include "CommandObject.h"
8
9 //----------------------------------------------------------------------------------------------------------------
10 // Class implementation
11 //----------------------------------------------------------------------------------------------------------------
12 /** @file TestOutline.cxx */
13
14 //------------------------------------------------------------------------------------------------------------
15 // Constructors & Destructors
16 //------------------------------------------------------------------------------------------------------------
17
18         /*
19         * Creates a command with the given text
20         * @param aText Is the text to assign to the command
21         * @return Returns the created commandObject pointer
22         */
23         CommandObject :: CommandObject(/*std::string aText*/)
24         { 
25                 //setText(aText);               
26         }
27
28         /*
29         * Destroys the command
30         */
31         CommandObject :: ~CommandObject()
32         { 
33                 
34         }
35
36 //------------------------------------------------------------------------------------------------------------
37 // Methods
38 //--------------------------------------------------------------------------------------------
39  
40