X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2Fwidgets%2FmanualContour%2FmanualBaseModel.h;h=25057a2bf126302ecd3c59d44a0a3ed068c8dd02;hb=15112ae15da4222831b0e8e7c9be87daf9e99a1c;hp=5815971523b9cb04a3334465ef87b9722e6e3145;hpb=e263b7ace0f53d647a731553a3f67700838ad146;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualBaseModel.h b/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualBaseModel.h index 5815971..25057a2 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualBaseModel.h +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualBaseModel.h @@ -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 _lstPoints; + /** + * Represents the label associated with the contour + */ + std::string _label; + std::string _label2; + };