X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_AttributeDouble.h;h=6ac965232fbf28b6a8c395f13a3068709e9fd42a;hb=b900918cef83bb82217e7221c7ff0ad9d8a6dbe9;hp=670c7f0892d24b756409625c4f09d9eebb7d2d70;hpb=9e869ede4d8c56262bb20534543c2bf56cd6a91b;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_AttributeDouble.h b/src/ModelAPI/ModelAPI_AttributeDouble.h index 670c7f089..6ac965232 100644 --- a/src/ModelAPI/ModelAPI_AttributeDouble.h +++ b/src/ModelAPI/ModelAPI_AttributeDouble.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModelAPI_AttributeDouble.h // Created: 2 Apr 2014 // Author: Mikhail PONIKAROV @@ -21,28 +23,27 @@ 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"; } /// Returns the type of this class of attributes, not static method - MODELAPI_EXPORT virtual std::string attributeType() - { - return type(); - } + MODELAPI_EXPORT virtual std::string attributeType(); /// To virtually destroy the fields of successors - MODELAPI_EXPORT virtual ~ModelAPI_AttributeDouble() - { - } + MODELAPI_EXPORT virtual ~ModelAPI_AttributeDouble(); protected: /// Objects are created for features automatically - MODELAPI_EXPORT ModelAPI_AttributeDouble() - { - } + MODELAPI_EXPORT ModelAPI_AttributeDouble(); }; //! Pointer on double attribute