Salome HOME
121af02a5c083985ebcf3bf46bb1c5f604b456d8
[modules/shaper.git] / src / ModelAPI / ModelAPI_AttributeDouble.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModelAPI_AttributeDouble.h
4 // Created:     2 Apr 2014
5 // Author:      Mikhail PONIKAROV
6
7 #ifndef ModelAPI_AttributeDouble_H_
8 #define ModelAPI_AttributeDouble_H_
9
10 #include "ModelAPI_Attribute.h"
11
12 /**\class ModelAPI_AttributeDouble
13  * \ingroup DataModel
14  * \brief Attribute that contains real value with double precision.
15  */
16
17 class ModelAPI_AttributeDouble : public ModelAPI_Attribute
18 {
19  public:
20   /// Defines the double value
21   MODELAPI_EXPORT virtual void setValue(const double theValue) = 0;
22
23   /// Returns the double value
24   MODELAPI_EXPORT virtual double value() = 0;
25
26   /// Returns the type of this class of attributes
27   MODELAPI_EXPORT static std::string type()
28   {
29     return "Double";
30   }
31
32   /// Returns the type of this class of attributes, not static method
33   MODELAPI_EXPORT virtual std::string attributeType()
34   {
35     return type();
36   }
37
38   /// To virtually destroy the fields of successors
39   MODELAPI_EXPORT virtual ~ModelAPI_AttributeDouble()
40   {
41   }
42
43  protected:
44   /// Objects are created for features automatically
45   MODELAPI_EXPORT ModelAPI_AttributeDouble()
46   {
47   }
48 };
49
50 //! Pointer on double attribute
51 typedef std::shared_ptr<ModelAPI_AttributeDouble> AttributeDoublePtr;
52
53 #endif