1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
3 // File: ModelAPI_AttributeDouble.h
5 // Author: Mikhail PONIKAROV
7 #ifndef ModelAPI_AttributeDouble_H_
8 #define ModelAPI_AttributeDouble_H_
10 #include <ModelAPI_Attribute.h>
15 /**\class ModelAPI_AttributeDouble
17 * \brief Attribute that contains real value with double precision.
20 class ModelAPI_AttributeDouble : public ModelAPI_Attribute
23 /// Defines the double value
24 MODELAPI_EXPORT virtual void setValue(const double theValue) = 0;
26 /// Returns the double value
27 MODELAPI_EXPORT virtual double value() = 0;
29 /// Defines the calculated double value
30 MODELAPI_EXPORT virtual void setCalculatedValue(const double theValue) = 0;
32 /// Defines the text value
33 MODELAPI_EXPORT virtual void setText(const std::string& theText) = 0;
35 /// Returns the text value
36 MODELAPI_EXPORT virtual std::string text() = 0;
38 /// Allows to set expression (text) as invalid (by the parameters listener)
39 MODELAPI_EXPORT virtual void setExpressionInvalid(const bool theFlag) = 0;
41 /// Returns true if text is invalid
42 MODELAPI_EXPORT virtual bool expressionInvalid() = 0;
44 /// Allows to set expression (text) error (by the parameters listener)
45 MODELAPI_EXPORT virtual void setExpressionError(const std::string& theError) = 0;
47 /// Returns an expression error
48 MODELAPI_EXPORT virtual std::string expressionError() = 0;
50 /// Defines the used parameters
51 MODELAPI_EXPORT virtual
52 void setUsedParameters(const std::set<std::string>& theUsedParameters) = 0;
54 /// Returns the used parameters
55 MODELAPI_EXPORT virtual std::set<std::string> usedParameters() const = 0;
57 /// Returns the type of this class of attributes
58 MODELAPI_EXPORT static std::string typeId()
63 /// Returns the type of this class of attributes, not static method
64 MODELAPI_EXPORT virtual std::string attributeType();
66 /// To virtually destroy the fields of successors
67 MODELAPI_EXPORT virtual ~ModelAPI_AttributeDouble();
70 /// Objects are created for features automatically
71 MODELAPI_EXPORT ModelAPI_AttributeDouble();
74 //! Pointer on double attribute
75 typedef std::shared_ptr<ModelAPI_AttributeDouble> AttributeDoublePtr;