]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/ModelAPI/ModelAPI_AttributeRefList.h
Salome HOME
Sources formated according to the codeing standards
[modules/shaper.git] / src / ModelAPI / ModelAPI_AttributeRefList.h
index d9948dd04d27a15e7d74032de20250fbbfbbe4b5..b8b5c700ba1346b80213fa587d70c68c54692408 100644 (file)
 
 class ModelAPI_AttributeRefList : public ModelAPI_Attribute
 {
-public:
+ public:
   /// Returns the type of this class of attributes
-  MODELAPI_EXPORT static std::string type() {return "RefList";}
+  MODELAPI_EXPORT static std::string type()
+  {
+    return "RefList";
+  }
 
   /// 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();
+  }
 
   /// Appends the feature to the end of a list
   MODELAPI_EXPORT virtual void append(ObjectPtr theObject) = 0;
@@ -35,10 +41,11 @@ public:
   /// Returns the list of features
   MODELAPI_EXPORT virtual std::list<ObjectPtr> list() = 0;
 
-protected:
+ protected:
   /// Objects are created for features automatically
   MODELAPI_EXPORT ModelAPI_AttributeRefList()
-  {}
+  {
+  }
 };
 
 #endif