Salome HOME
Sources formated according to the codeing standards
[modules/shaper.git] / src / ModelAPI / ModelAPI_AttributeDouble.h
index 163ebefe96959ba8c95e9800a836a9c008dad668..e61dfa060292bcbb680f32e0d799e0cfc6c83b25 100644 (file)
@@ -14,7 +14,7 @@
 
 class ModelAPI_AttributeDouble : public ModelAPI_Attribute
 {
-public:
+ public:
   /// Defines the double value
   MODELAPI_EXPORT virtual void setValue(const double theValue) = 0;
 
@@ -22,18 +22,27 @@ public:
   MODELAPI_EXPORT virtual double value() = 0;
 
   /// Returns the type of this class of attributes
-  MODELAPI_EXPORT 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
-  MODELAPI_EXPORT virtual std::string attributeType() {return type();}
+  MODELAPI_EXPORT virtual std::string attributeType()
+  {
+    return type();
+  }
 
   /// To virtually destroy the fields of successors
-  MODELAPI_EXPORT virtual ~ModelAPI_AttributeDouble() {}
+  MODELAPI_EXPORT virtual ~ModelAPI_AttributeDouble()
+  {
+  }
 
-protected:
+ protected:
   /// Objects are created for features automatically
   MODELAPI_EXPORT ModelAPI_AttributeDouble()
-  {}
+  {
+  }
 };
 
 //! Pointer on double attribute