X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_ResultPart.h;h=f53ac5e852c6e48444789f0b1812030357206203;hb=cdfb03d58ed695e291aa3b7cd3c342051e18e444;hp=a04e0024f5ce6a650f9a671402fac06ee677af1e;hpb=0c0c2fd5b941ad2e65a0e82251dca2f796750b97;p=modules%2Fshaper.git diff --git a/src/Model/Model_ResultPart.h b/src/Model/Model_ResultPart.h index a04e0024f..f53ac5e85 100644 --- a/src/Model/Model_ResultPart.h +++ b/src/Model/Model_ResultPart.h @@ -23,13 +23,23 @@ class Model_ResultPart : public ModelAPI_ResultPart { TopoDS_Shape myShape; ///< shape of this part created from bodies (updated only of Part deactivation) std::shared_ptr myTrsf; ///< if it is just copy of original shape, keep just transformation + bool myIsInLoad; ///< true if document of this part is in the loading process, so, it may be already received public: + + /// the reference to the base result document, may be null if this is the root, others make sequence of references + inline static const std::string& BASE_REF_ID() + { + static const std::string MY_BASE_REF("BaseReference"); + return MY_BASE_REF; + } /// Request for initialization of data model of the result: adding all attributes virtual void initAttributes(); /// Returns the part-document of this result MODEL_EXPORT virtual std::shared_ptr partDoc(); - /// Part has no stored feature: this method returns NULL - MODEL_EXPORT virtual std::shared_ptr owner(); + + /// Returns the original part result: for transfomration features results this is + /// the original Part feature result + MODEL_EXPORT virtual std::shared_ptr original(); /// Sets this document as current and if it is not loaded yet, loads it MODEL_EXPORT virtual void activate();