]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
Added support of BOOST's shared_ptr
authorsrn <srn@opencascade.com>
Thu, 12 May 2005 08:23:02 +0000 (08:23 +0000)
committersrn <srn@opencascade.com>
Thu, 12 May 2005 08:23:02 +0000 (08:23 +0000)
src/SALOMEDSClient/SALOMEDSClient_StudyManager.hxx

index 212264fd02a460cf243e4219ff393accb6b8fc9c..9e50d0a8708e8e0aa9463b0bb3919baef0a65671 100644 (file)
@@ -18,11 +18,11 @@ public:
 
   virtual _PTR(Study) NewStudy(const std::string& study_name) = 0;
   virtual _PTR(Study) Open(const std::string& theStudyUrl) = 0;
-  virtual void Close( _PTR(Study) theStudy) = 0;
-  virtual void Save( _PTR(Study) theStudy, bool theMultiFile) = 0;
-  virtual void SaveASCII( _PTR(Study) theStudy, bool theMultiFile) = 0;
-  virtual void SaveAs(const std::string& theUrl,  _PTR(Study) theStudy, bool theMultiFile) = 0;
-  virtual void SaveAsASCII(const std::string& theUrl,  _PTR(Study) theStudy, bool theMultiFile) = 0;
+  virtual void Close(const _PTR(Study)& theStudy) = 0;
+  virtual void Save(const _PTR(Study)& theStudy, bool theMultiFile) = 0;
+  virtual void SaveASCII(const _PTR(Study)& theStudy, bool theMultiFile) = 0;
+  virtual void SaveAs(const std::string& theUrl,  const _PTR(Study)& theStudy, bool theMultiFile) = 0;
+  virtual void SaveAsASCII(const std::string& theUrl,  const _PTR(Study)& theStudy, bool theMultiFile) = 0;
   virtual std::vector<std::string> GetOpenStudies() = 0;
   virtual _PTR(Study) GetStudyByName(const std::string& theStudyName) = 0;
   virtual _PTR(Study) GetStudyByID(int theStudyID) = 0;