X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FModelAPI%2FModelAPI_Document.h;h=a5ad181f06e2d1387d02f4e10ff4529c6e7b4302;hb=207f4e84daf9c78020f5f250a33a63c71f0b0556;hp=101910fc62aeb06dbfb2dcb5a79363409624c75f;hpb=76b92ca1a1dce1aa3e0561f4213510232df1efc2;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_Document.h b/src/ModelAPI/ModelAPI_Document.h index 101910fc6..a5ad181f0 100644 --- a/src/ModelAPI/ModelAPI_Document.h +++ b/src/ModelAPI/ModelAPI_Document.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2019 CEA/DEN, EDF R&D +// Copyright (C) 2014-2022 CEA/DEN, EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -81,7 +81,8 @@ public: //! Moves the feature to make it after the given one in the history. virtual void moveFeature(std::shared_ptr theMoved, - std::shared_ptr theAfterThis) = 0; + std::shared_ptr theAfterThis, + const bool theSplit = false) = 0; ///! Returns the id of the document virtual const int id() const = 0; @@ -99,7 +100,7 @@ public: //! \param theName name of the object to search //! \returns null if such object is not found virtual std::shared_ptr objectByName(const std::string& theGroupID, - const std::string& theName) = 0; + const std::wstring& theName) = 0; //! Returns the object index in the group. Object must be visible. Otherwise returns -1. //! \param theObject object of this document @@ -262,8 +263,13 @@ public: /// Loads the OCAF document from the file into the current document. /// All the features are added after the active feature. /// \param theFileName name of the file to import + /// \param theImported list of features imported from the file + /// \param theCheckOnly verify the document does not contain unappropriate features + /// (useful for import to PartSet), but do not import it /// \returns true if file was loaded successfully - MODELAPI_EXPORT virtual bool import(const char* theFileName) = 0; + MODELAPI_EXPORT virtual bool importPart(const char* theFileName, + std::list >& theImported, + bool theCheckOnly = false) = 0; /// Export the list of features to the file /// \param theFilename path to save the file