Salome HOME
integration of modifications from Gérald Nicolas
[modules/homard.git] / src / HOMARD_I / HOMARD_Cas_i.hxx
1 // Copyright (C) 2011-2012  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef _HOMARD_CAS_I_HXX_
21 #define _HOMARD_CAS_I_HXX_
22
23 #include <SALOMEconfig.h>
24 #include CORBA_SERVER_HEADER(HOMARD_Gen)
25 #include CORBA_SERVER_HEADER(HOMARD_Cas)
26
27 #include "SALOME_Component_i.hxx"
28 #include "SALOME_NamingService.hxx"
29 #include "Utils_CorbaException.hxx"
30
31 #include <string>
32
33 class HOMARD_Cas;
34
35 class HOMARD_Cas_i:
36   public virtual Engines_Component_i,
37   public virtual POA_HOMARD::HOMARD_Cas,
38   public virtual PortableServer::ServantBase
39 {
40 public:
41   HOMARD_Cas_i( CORBA::ORB_ptr orb, HOMARD::HOMARD_Gen_var gen_i );
42   HOMARD_Cas_i();
43
44   virtual ~HOMARD_Cas_i();
45
46   void                   SetDirName( const char* NomDir );
47   char*                  GetDirName();
48
49   void                   SetName( const char* Name );
50   char*                  GetName();
51
52   void                   SetConfType( CORBA::Long ConfType );
53   CORBA::Long            GetConfType();
54
55   char*                  GetIter0Name();
56   HOMARD::HOMARD_Iteration_ptr GetIter0() ;
57
58   HOMARD::HOMARD_Iteration_ptr  NextIteration( const char* Name) ;
59
60   void                   AddIteration( const char* NomIteration );
61
62   HOMARD::extrema*       GetBoundingBox();
63   void                   SetBoundingBox( const HOMARD::extrema& LesExtremes );
64
65   HOMARD::ListGroupType* GetGroups();
66   void                   AddGroup( const char* Group);
67   void                   SetGroups(const HOMARD::ListGroupType& ListGroup);
68
69   HOMARD::ListBoundaryGroupType*  GetBoundaryGroup();
70   void                   AddBoundaryGroup( const char* Boundary, const char* Group);
71
72   void                   SetPyram( CORBA::Long Pyram );
73   CORBA::Long            GetPyram();
74
75   std::string            Dump() const;
76   bool                   Restore( const std::string& stream );
77
78   char *                 GetDumpPython();
79   CORBA::Long            GetNumber();
80
81 private:
82   ::HOMARD_Cas*          myHomardCas;
83
84   CORBA::ORB_ptr         _orb;
85   HOMARD::HOMARD_Gen_var _gen_i;
86 };
87
88 #endif