X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_ResultBody.h;h=ff4ce6e19819729ac8efc67b8e1a83a5194c7ea9;hb=c8a838ed76da0c6784bcd1ee67ef9af7da994bf7;hp=cce169833c42946840385e7b82ff2af581471aa4;hpb=7fbaddcd99f065a375775e2c3547ad93a5dd8c70;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_ResultBody.h b/src/ModelAPI/ModelAPI_ResultBody.h index cce169833..ff4ce6e19 100644 --- a/src/ModelAPI/ModelAPI_ResultBody.h +++ b/src/ModelAPI/ModelAPI_ResultBody.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModelAPI_ResultBody.hxx // Created: 07 Jul 2014 // Author: Mikhail PONIKAROV @@ -9,7 +11,7 @@ #include #include #include -#include +#include #include /**\class ModelAPI_ResultBody @@ -23,87 +25,84 @@ 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; } /// Stores the shape (called by the execution method). - virtual void store(const boost::shared_ptr& theShape) = 0; + virtual void store(const std::shared_ptr& theShape) = 0; /// Stores the generated shape (called by the execution method). - virtual void storeGenerated(const boost::shared_ptr& theFromShape, - const boost::shared_ptr& theToShape) = 0; + virtual void storeGenerated(const std::shared_ptr& theFromShape, + const std::shared_ptr& theToShape) = 0; /// Stores the modified shape (called by the execution method). - virtual void storeModified(const boost::shared_ptr& theOldShape, - const boost::shared_ptr& theNewShape) = 0; - - /// Returns the shape-result produced by this feature - virtual boost::shared_ptr shape() = 0; + virtual void storeModified(const std::shared_ptr& theOldShape, + const std::shared_ptr& theNewShape) = 0; /// 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 boost::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 boost::shared_ptr& theOldShape, - const boost::shared_ptr& theNewShape, const int theTag = 1) = 0; + virtual void generated(const std::shared_ptr& theOldShape, + 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 boost::shared_ptr& theOldShape, - const boost::shared_ptr& theNewShape, const int theTag = 1) = 0; + virtual void modified(const std::shared_ptr& theOldShape, + 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. virtual void deleted( - const boost::shared_ptr& theOldShape, const int theTag = 1) = 0; + const std::shared_ptr& theOldShape, const int theTag = 1) = 0; /// load deleted shapes virtual void loadDeletedShapes (GeomAlgoAPI_MakeShape* theMS, - boost::shared_ptr theShapeIn, + std::shared_ptr theShapeIn, const int theKindOfShape, const int theTag) = 0; /// load and orient modified shapes virtual void loadAndOrientModifiedShapes ( GeomAlgoAPI_MakeShape* theMS, - boost::shared_ptr theShapeIn, + 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 ( GeomAlgoAPI_MakeShape* theMS, - boost::shared_ptr theShapeIn, + 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(boost::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(boost::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(boost::shared_ptr theShape, int& theTag) = 0; + virtual void loadDisconnectedVertexes(std::shared_ptr theShape, const std::string& theName,int& theTag) = 0; protected: }; //! Pointer on feature object -typedef boost::shared_ptr ResultBodyPtr; +typedef std::shared_ptr ResultBodyPtr; #endif