X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Application.h;h=6bf331995002503baf9d0847dc4137bc7fac370c;hb=77ce6d35ac8d2f0fdaecb4f23e0870bf74e36103;hp=e0fb01c1a2b7798d95a2885961b96be24483abc6;hpb=c4eab94a20a0d93100549a210582d46409fec1cc;p=modules%2Fshaper.git diff --git a/src/Model/Model_Application.h b/src/Model/Model_Application.h index e0fb01c1a..6bf331995 100644 --- a/src/Model/Model_Application.h +++ b/src/Model/Model_Application.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2019 CEA/DEN, EDF R&D +// Copyright (C) 2014-2024 CEA, EDF // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -66,16 +66,16 @@ public: //! \param theDocName name of the document file //! \param theDocID the identifier of the loaded document (to be created) //! \returns true if load is ok - MODEL_EXPORT bool loadDocument(const std::string theDocName, const int theDocID); + MODEL_EXPORT bool loadDocument(const std::wstring theDocName, const int theDocID); //! Set path for the loaded by demand documents void setLoadPath(std::string thePath); //! Returns the path for the loaded by demand documents const std::string& loadPath() const; //! Defines that specified document must be loaded by demand - void setLoadByDemand(std::string theID, const int theDocID); + void setLoadByDemand(std::wstring theID, const int theDocID); //! Returns true if specified document must be loaded by demand - bool isLoadByDemand(std::string theID, const int theDocIndex); + bool isLoadByDemand(std::wstring theID, const int theDocIndex); //! produces new unique identifier of the document int generateDocumentId(); @@ -98,7 +98,7 @@ public: /// Path for the loaded by demand documents std::string myPath; /// Path for the loaded by demand documents (and the persistent ID as the value) - std::map myLoadedByDemand; + std::map myLoadedByDemand; }; #endif