Salome HOME
Revert "Synchronize adm files"
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_SimanStudy.hxx
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  File   : SALOMEDS_SimanStudy.hxx
24 //  Author : Mikhail PONIKAROV
25 //  Module : SALOME
26 //
27 #ifndef __SALOMEDS_SIMANSTUDY_H__
28 #define __SALOMEDS_SIMANSTUDY_H__
29
30 #include <vector>
31 #include <string>
32
33 #include <DF_definitions.hxx>
34 #include "SALOMEDSClient.hxx"
35 //#include "SALOMEDSImpl_SimanStudy.hxx"
36
37 // IDL headers
38 #include <SALOMEconfig.h>
39 #include CORBA_SERVER_HEADER(SALOMEDS)
40
41 class Standard_EXPORT SALOMEDS_SimanStudy: public SALOMEDSClient_SimanStudy
42 {
43
44 private:
45   // bool                       _isLocal;
46   //SALOMEDSImpl_SimanStudy*   _local_impl; // MPV: no local implementation yet: siman operations works only with CORBA interface
47   SALOMEDS::SimanStudy_var   _corba_impl;
48   CORBA::ORB_var             _orb;
49
50 public:
51
52   //SALOMEDS_SimanStudy(SALOMEDSImpl_SimanStudy* theStudy);
53   SALOMEDS_SimanStudy(SALOMEDS::SimanStudy_ptr theStudy);
54   ~SALOMEDS_SimanStudy();
55
56   virtual void CheckOut(const _PTR(Study) theTarget);
57   virtual void CheckIn(const std::string theModuleName);
58   virtual _PTR(Study) getReferencedStudy() ;
59   virtual std::string StudyId();
60   virtual void StudyId(const std::string theId);
61   virtual std::string ScenarioId();
62   virtual void ScenarioId(const std::string theId);
63   virtual std::string UserId();
64   virtual void UserId(const std::string theId);
65                 
66 private:
67   void init_orb();
68
69 };
70 #endif