X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_AttributeRefList.h;h=3036cc9704b629c4202960f34c963c16981e65d8;hb=4b116f1c2ff374e8c5cc5afe2b64eb1fe2a8abd3;hp=973fbc46deb88e83cf5af51ce18585c499e5b36d;hpb=103633b49d995fe6001e226ccdcc8ca48b9cb4e6;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_AttributeRefList.h b/src/ModelAPI/ModelAPI_AttributeRefList.h index 973fbc46d..3036cc970 100644 --- a/src/ModelAPI/ModelAPI_AttributeRefList.h +++ b/src/ModelAPI/ModelAPI_AttributeRefList.h @@ -2,10 +2,11 @@ // Created: 8 May 2014 // Author: Mikhail PONIKAROV -#ifndef ModelAPI_AttributeRefList_HeaderFile -#define ModelAPI_AttributeRefList_HeaderFile +#ifndef ModelAPI_AttributeRefList_H_ +#define ModelAPI_AttributeRefList_H_ #include "ModelAPI_Attribute.h" +#include "ModelAPI_Feature.h" #include /**\class ModelAPI_AttributeRefList @@ -15,29 +16,41 @@ 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(boost::shared_ptr theFeature) = 0; + MODELAPI_EXPORT virtual void append(ObjectPtr theObject) = 0; /// Erases the first meet of the feature in the list - MODELAPI_EXPORT virtual void remove(boost::shared_ptr theFeature) = 0; + MODELAPI_EXPORT virtual void remove(ObjectPtr theObject) = 0; /// Returns number of features in the list - MODELAPI_EXPORT virtual int size() = 0; + MODELAPI_EXPORT virtual int size() const = 0; /// Returns the list of features - MODELAPI_EXPORT virtual std::list > list() = 0; + MODELAPI_EXPORT virtual std::list list() = 0; -protected: + /// Returns the referenced object by the zero-based index + MODELAPI_EXPORT virtual ObjectPtr object(const int theIndex) const = 0; + + protected: /// Objects are created for features automatically MODELAPI_EXPORT ModelAPI_AttributeRefList() - {} + { + } }; +typedef std::shared_ptr AttributeRefListPtr; + #endif