20 #ifndef MODELAPI_COMPOSITEFEATURE_H_
21 #define MODELAPI_COMPOSITEFEATURE_H_
24 #include "ModelAPI_Feature.h"
38 virtual std::shared_ptr<ModelAPI_Feature>
addFeature(std::string theID) = 0;
44 virtual std::shared_ptr<ModelAPI_Feature>
subFeature(
const int theIndex,
45 bool forTree =
false) = 0;
51 virtual bool isSub(ObjectPtr theObject)
const = 0;
55 virtual void removeFeature(std::shared_ptr<ModelAPI_Feature> theFeature) = 0;
58 MODELAPI_EXPORT
virtual void erase();
62 typedef std::shared_ptr<ModelAPI_CompositeFeature> CompositeFeaturePtr;
Feature that consists of other features: like sketcher with edges inside.
Definition: ModelAPI_CompositeFeature.h:33
virtual bool isSub(ObjectPtr theObject) const =0
Returns true if feature or result belong to this composite feature as subs.
virtual int numberOfSubs(bool forTree=false) const =0
Returns the number of sub-elements.
virtual int subFeatureId(const int theIndex) const =0
Returns the sub-feature unique identifier in this composite feature by zero-base index.
virtual void erase()
in addition removes all subs
Definition: ModelAPI_CompositeFeature.cpp:27
virtual std::shared_ptr< ModelAPI_Feature > addFeature(std::string theID)=0
Adds feature to the sketch and to its document.
virtual void removeFeature(std::shared_ptr< ModelAPI_Feature > theFeature)=0
This method to inform that sub-feature is removed and must be removed from the internal data structur...
virtual std::shared_ptr< ModelAPI_Feature > subFeature(const int theIndex, bool forTree=false)=0
Returns the sub-feature by zero-base index.
Feature function that represents the particular functionality of this operation.
Definition: ModelAPI_Feature.h:41