Salome HOME
Merge from V6_main_20120808 08Aug12
[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* NomCas );
50   char*                  GetName();
51
52   void                   SetConfType( CORBA::Long ConfType );
53   CORBA::Long            GetConfType();
54
55   void                   AddIteration( const char* NomIteration );
56   char*                  GetIter0Name();
57
58   HOMARD::extrema*       GetBoundingBox();
59   void                   SetBoundingBox( const HOMARD::extrema& LesExtremes );
60
61   HOMARD::ListGroupType* GetGroups();
62   void                   AddGroup( const char* Group);
63   void                   SetGroups(const HOMARD::ListGroupType& ListGroup);
64
65   HOMARD::ListBoundaryGroupType*  GetBoundaryGroup();
66   void                   AddBoundaryGroup( const char* Boundary, const char* Group);
67
68   void                   SetPyram( CORBA::Long Pyram );
69   CORBA::Long            GetPyram();
70
71   std::string            Dump() const;
72   bool                   Restore( const std::string& stream );
73
74   char *                 GetDumpPython();
75   CORBA::Long            GetNumber();
76
77 private:
78   ::HOMARD_Cas*          myHomardCas;
79
80   CORBA::ORB_ptr         _orb;
81   HOMARD::HOMARD_Gen_var _gen_i;
82 };
83
84 #endif