X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_AttributeDouble.h;h=e61dfa060292bcbb680f32e0d799e0cfc6c83b25;hb=9eb5801ea57b763b26db2c7bf897a50b34e2cc31;hp=024da5ea51bea4746d6db7e357e2ad66f0f702ba;hpb=199ba9a901b30996e1185a1e7d7b05d972ca8121;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_AttributeDouble.h b/src/ModelAPI/ModelAPI_AttributeDouble.h index 024da5ea5..e61dfa060 100644 --- a/src/ModelAPI/ModelAPI_AttributeDouble.h +++ b/src/ModelAPI/ModelAPI_AttributeDouble.h @@ -2,8 +2,8 @@ // Created: 2 Apr 2014 // Author: Mikhail PONIKAROV -#ifndef ModelAPI_AttributeDouble_HeaderFile -#define ModelAPI_AttributeDouble_HeaderFile +#ifndef ModelAPI_AttributeDouble_H_ +#define ModelAPI_AttributeDouble_H_ #include "ModelAPI_Attribute.h" @@ -12,28 +12,40 @@ * \brief Attribute that contains real value with double precision. */ -class MODELAPI_EXPORT ModelAPI_AttributeDouble : public ModelAPI_Attribute +class ModelAPI_AttributeDouble : public ModelAPI_Attribute { -public: + public: /// Defines the double value - virtual void setValue(const double theValue) = 0; + MODELAPI_EXPORT virtual void setValue(const double theValue) = 0; /// Returns the double value - virtual double value() = 0; + MODELAPI_EXPORT virtual double value() = 0; /// Returns the type of this class of attributes - static std::string type() {return "Double";} + MODELAPI_EXPORT static std::string type() + { + return "Double"; + } /// Returns the type of this class of attributes, not static method - virtual std::string attributeType() {return type();} + MODELAPI_EXPORT virtual std::string attributeType() + { + return type(); + } /// To virtually destroy the fields of successors - virtual ~ModelAPI_AttributeDouble() {} + MODELAPI_EXPORT virtual ~ModelAPI_AttributeDouble() + { + } -protected: + protected: /// Objects are created for features automatically - ModelAPI_AttributeDouble() - {} + MODELAPI_EXPORT ModelAPI_AttributeDouble() + { + } }; +//! Pointer on double attribute +typedef boost::shared_ptr AttributeDoublePtr; + #endif