]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualBaseModel.h
#3323 creaMaracasVisu Feature New Normal - label2 for manal contours
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / manualContour / manualBaseModel.h
index 5815971523b9cb04a3334465ef87b9722e6e3145..25057a2bf126302ecd3c59d44a0a3ed068c8dd02 100644 (file)
@@ -124,7 +124,10 @@ public:
        * Assigns the parameter value to the label
        * @param newLabel New label of the contour
        */
-       virtual void SetLabel(std::string newLabel);
+       void SetLabel(std::string newLabel);
+       std::string GetLabel();
+       void SetLabel2(std::string newLabel);
+       std::string GetLabel2();
        
        /*
        * Assigns the parameter value to the real size
@@ -132,10 +135,6 @@ public:
        */
        virtual void SetRealSize(double newRealSize);
        
-       /**
-       * Returns the label of the contour
-       */
-       virtual std::string GetLabel();
 
        /**
        * Returns the real size in milimeters of the contour
@@ -158,6 +157,12 @@ protected:
        int                                                     _sizePointsContour;
        std::vector<manualPoint*>       _lstPoints;
 
+       /**
+       * Represents the label associated with the contour
+       */
+       std::string                                     _label;
+       std::string                                     _label2;
+
 };