X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_BodyBuilder.h;h=0941d38b2aaf990b7709af4fb8442a5264808b3c;hb=8f2e8789faa06405e900ee2272858a8ca898ba32;hp=5097fc17ddab71867a196925fe4db492b88da40c;hpb=f328eabbb64e9fe347f36728710ebe1ebb00de6e;p=modules%2Fshaper.git diff --git a/src/Model/Model_BodyBuilder.h b/src/Model/Model_BodyBuilder.h index 5097fc17d..0941d38b2 100755 --- a/src/Model/Model_BodyBuilder.h +++ b/src/Model/Model_BodyBuilder.h @@ -18,7 +18,7 @@ class TNaming_Builder; /**\class Model_BodyBuilder * \ingroup DataModel - * \brief The body (shape) result of a feature. + * \brief Extra API for the ResultBody that allows to work with naming. */ class Model_BodyBuilder : public ModelAPI_BodyBuilder { @@ -27,7 +27,8 @@ class Model_BodyBuilder : public ModelAPI_BodyBuilder std::vector myBuilders; public: /// Stores the shape (called by the execution method). - MODEL_EXPORT virtual void store(const std::shared_ptr& theShape); + MODEL_EXPORT virtual void store(const std::shared_ptr& theShape, + const bool theIsStoreSameShapes = true); /// Stores the generated shape (called by the execution method). MODEL_EXPORT virtual void storeGenerated(const std::shared_ptr& theFromShape, @@ -42,6 +43,10 @@ public: const std::shared_ptr& theNewShape, const int theDecomposeSolidsTag = 0); + /// Stores the shape without naming support + /// \param theShape shape to store + MODEL_EXPORT virtual void storeWithoutNaming(const std::shared_ptr& theShape); + /// Returns the shape-result produced by this feature MODEL_EXPORT virtual std::shared_ptr shape(); @@ -79,7 +84,8 @@ public: const int theKindOfShape, const int theTag, const std::string& theName, - GeomAPI_DataMapOfShapeShape& theSubShapes); + GeomAPI_DataMapOfShapeShape& theSubShapes, + const bool theIsStoreSeparate = false); /// load and orient generated shapes MODEL_EXPORT virtual void loadAndOrientGeneratedShapes ( GeomAlgoAPI_MakeShape* theMS, @@ -105,7 +111,12 @@ public: /// (theFlag = true) and back (theFlag = false) MODEL_EXPORT virtual void evolutionToSelection(const bool theFlag); + /// Returns true if the latest modification of this body in the naming history + // is equal to the given shape + MODEL_EXPORT virtual bool isLatestEqual(const std::shared_ptr& theShape); + protected: + /// Default constructor accessible only by Model_Objects Model_BodyBuilder(ModelAPI_Object* theOwner); /// Removes the stored builders