Salome HOME
integration of modifications from Gérald Nicolas
[modules/homard.git] / src / HOMARD_I / HOMARD_Boundary_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_Boundary_I_HXX_
21 #define _HOMARD_Boundary_I_HXX_
22
23 #include <SALOMEconfig.h>
24 #include CORBA_SERVER_HEADER(HOMARD_Gen)
25 #include CORBA_SERVER_HEADER(HOMARD_Boundary)
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_Boundary;
34
35 class HOMARD_Boundary_i:
36   public virtual Engines_Component_i,
37   public virtual POA_HOMARD::HOMARD_Boundary,
38   public virtual PortableServer::ServantBase
39 {
40 public:
41   HOMARD_Boundary_i( CORBA::ORB_ptr orb, HOMARD::HOMARD_Gen_var gen_i );
42   HOMARD_Boundary_i();
43
44   virtual ~HOMARD_Boundary_i();
45
46   void                   SetName( const char* Name );
47   char*                  GetName();
48   char*                  GetDumpPython();
49
50   void                   SetType( CORBA::Long Type );
51
52   CORBA::Long            GetType();
53
54   void                   SetMeshFile( const char* MeshFile );
55   char*                  GetMeshFile();
56
57   void                   SetMeshName( const char* MeshName );
58   char*                  GetMeshName();
59
60   void                   SetCylinder( double Xcentre, double Ycentre, double ZCentre,
61                                       double Xaxe, double Yaxe, double Zaxe,
62                                       double rayon );
63   void                   SetSphere( double Xcentre, double Ycentre, double ZCentre,
64                                     double rayon );
65   HOMARD::double_array*  GetCoords();
66
67   HOMARD::double_array*  GetLimit();
68   void                   SetLimit( double Xincr, double Yincr, double Zincr);
69
70
71   std::string            Dump() const;
72   bool                   Restore( const std::string& stream );
73
74   void                   SetCaseCreation( const char* NomCaseCreation );
75   char*                  GetCaseCreation();
76
77   void                    AddGroup( const char* Group);
78   void                    SetGroups(const HOMARD::ListGroupType& ListGroup);
79   HOMARD::ListGroupType*  GetGroups();
80
81
82 private:
83   ::HOMARD_Boundary*     myHomardBoundary;
84
85   CORBA::ORB_ptr         _orb;
86   HOMARD::HOMARD_Gen_var _gen_i;
87 };
88
89 #endif