Salome HOME
Merge branch 'Dev_1.1.0' of newgeom:newgeom.git into Dev_1.1.0
[modules/shaper.git] / src / ModelAPI / ModelAPI_AttributeDouble.h
index 498b4050901c7d0cdb4b54be64e5ebcf358684cf..6ac965232fbf28b6a8c395f13a3068709e9fd42a 100644 (file)
@@ -23,8 +23,14 @@ class ModelAPI_AttributeDouble : public ModelAPI_Attribute
   /// Returns the double value
   MODELAPI_EXPORT virtual double value() = 0;
 
+  /// Defines the double value
+  MODELAPI_EXPORT virtual void setText(const std::string& theText) = 0;
+
+  /// Returns the double value
+  MODELAPI_EXPORT virtual std::string text() = 0;
+
   /// Returns the type of this class of attributes
-  MODELAPI_EXPORT static std::string type()
+  MODELAPI_EXPORT static std::string typeId()
   {
     return "Double";
   }