X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_ResultBody.h;h=ff4ce6e19819729ac8efc67b8e1a83a5194c7ea9;hb=6bb3ec6c114b55c02bad00ec953cd5b867eb7083;hp=9a2053abcdce276371be600ada2a74511ea48a56;hpb=7bf19255421b34594c7b0a76d0ce28166d0ce895;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_ResultBody.h b/src/ModelAPI/ModelAPI_ResultBody.h index 9a2053abc..ff4ce6e19 100644 --- a/src/ModelAPI/ModelAPI_ResultBody.h +++ b/src/ModelAPI/ModelAPI_ResultBody.h @@ -25,14 +25,12 @@ class ModelAPI_ResultBody : public ModelAPI_Result { public: + MODELAPI_EXPORT virtual ~ModelAPI_ResultBody(); /// Returns the group identifier of this result - virtual std::string groupName() - { - return group(); - } + MODELAPI_EXPORT virtual std::string groupName(); /// Returns the group identifier of this result - static std::string group() + inline static std::string group() { static std::string MY_GROUP = "Bodies"; return MY_GROUP; @@ -52,18 +50,18 @@ public: /// Records the subshape newShape which was generated during a topological construction. /// As an example, consider the case of a face generated in construction of a box. virtual void generated( - const std::shared_ptr& theNewShape, const int theTag = 1) = 0; + const std::shared_ptr& theNewShape, const std::string& theName, const int theTag = 1) = 0; /// Records the shape newShape which was generated from the shape oldShape during a topological /// construction. As an example, consider the case of a face generated from an edge in /// construction of a prism. virtual void generated(const std::shared_ptr& theOldShape, - const std::shared_ptr& theNewShape, const int theTag = 1) = 0; + const std::shared_ptr& theNewShape, const std::string& theName, const int theTag = 1) = 0; /// Records the shape newShape which is a modification of the shape oldShape. /// As an example, consider the case of a face split or merged in a Boolean operation. virtual void modified(const std::shared_ptr& theOldShape, - const std::shared_ptr& theNewShape, const int theTag = 1) = 0; + const std::shared_ptr& theNewShape, const std::string& theName, const int theTag = 1) = 0; /// Records the shape oldShape which was deleted from the current label. /// As an example, consider the case of a face removed by a Boolean operation. @@ -81,6 +79,7 @@ public: std::shared_ptr theShapeIn, const int theKindOfShape, const int theTag, + const std::string& theName, GeomAPI_DataMapOfShapeShape& theSubShapes) = 0; /// load and orient generated shapes virtual void loadAndOrientGeneratedShapes ( @@ -88,16 +87,17 @@ public: std::shared_ptr theShapeIn, const int theKindOfShape, const int theTag, + const std::string& theName, GeomAPI_DataMapOfShapeShape& theSubShapes) = 0; /// load shapes of the first level (to be used during shape import) - virtual void loadFirstLevel(std::shared_ptr theShape, int& theTag) = 0; + virtual void loadFirstLevel(std::shared_ptr theShape, const std::string& theName, int& theTag) = 0; /// load disconnected edges - virtual void loadDisconnectedEdges(std::shared_ptr theShape, int& theTag) = 0; + virtual void loadDisconnectedEdges(std::shared_ptr theShape, const std::string& theName, int& theTag) = 0; /// load disconnected vetexes - virtual void loadDisconnectedVertexes(std::shared_ptr theShape, int& theTag) = 0; + virtual void loadDisconnectedVertexes(std::shared_ptr theShape, const std::string& theName,int& theTag) = 0; protected: };