X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_AttributeRefList.h;h=87800fb3660d0ab102944894dc0093aaf5295138;hb=4e60e46af3ebb4d1d8e1709e7806ed134edd4be7;hp=973fbc46deb88e83cf5af51ce18585c499e5b36d;hpb=507f658f34fc6c42f48fb83a8fa916c6f0e33fd3;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_AttributeRefList.h b/src/ModelAPI/ModelAPI_AttributeRefList.h index 973fbc46d..87800fb36 100644 --- a/src/ModelAPI/ModelAPI_AttributeRefList.h +++ b/src/ModelAPI/ModelAPI_AttributeRefList.h @@ -6,6 +6,7 @@ #define ModelAPI_AttributeRefList_HeaderFile #include "ModelAPI_Attribute.h" +#include "ModelAPI_Feature.h" #include /**\class ModelAPI_AttributeRefList @@ -23,16 +24,16 @@ public: 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(FeaturePtr theFeature) = 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(FeaturePtr theFeature) = 0; /// Returns number of features in the list MODELAPI_EXPORT virtual int size() = 0; /// Returns the list of features - MODELAPI_EXPORT virtual std::list > list() = 0; + MODELAPI_EXPORT virtual std::list list() = 0; protected: /// Objects are created for features automatically