]> SALOME platform Git repositories - modules/homard.git/blob - src/HOMARD_I/HOMARD_Boundary_i.hxx
Salome HOME
Merge from V6_main 01/04/2013
[modules/homard.git] / src / HOMARD_I / HOMARD_Boundary_i.hxx
1 // Copyright (C) 2011-2013  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 // Remarques :
20 // L'ordre de description des fonctions est le meme dans tous les fichiers
21 // HOMARD_aaaa.idl, HOMARD_aaaa.hxx, HOMARD_aaaa.cxx, HOMARD_aaaa_i.hxx, HOMARD_aaaa_i.cxx :
22 // 1. Les generalites : Name, Delete, DumpPython, Dump, Restore
23 // 2. Les caracteristiques
24 // 3. Le lien avec les autres structures
25 //
26 // Quand les 2 fonctions Setxxx et Getxxx sont presentes, Setxxx est decrit en premier
27 //
28
29 #ifndef _HOMARD_Boundary_I_HXX_
30 #define _HOMARD_Boundary_I_HXX_
31
32 #include <SALOMEconfig.h>
33 #include CORBA_SERVER_HEADER(HOMARD_Gen)
34 #include CORBA_SERVER_HEADER(HOMARD_Boundary)
35
36 #include "SALOME_Component_i.hxx"
37 #include "SALOME_NamingService.hxx"
38 #include "Utils_CorbaException.hxx"
39
40 #include <string>
41
42 class HOMARD_Boundary;
43
44 class HOMARD_Boundary_i:
45   public virtual Engines_Component_i,
46   public virtual POA_HOMARD::HOMARD_Boundary,
47   public virtual PortableServer::ServantBase
48 {
49 public:
50   HOMARD_Boundary_i( CORBA::ORB_ptr orb, HOMARD::HOMARD_Gen_var gen_i );
51   HOMARD_Boundary_i();
52
53   virtual ~HOMARD_Boundary_i();
54
55 // Generalites
56   void                   SetName( const char* Name );
57   char*                  GetName();
58
59   CORBA::Long            Delete();
60
61   char*                  GetDumpPython();
62
63   std::string            Dump() const;
64   bool                   Restore( const std::string& stream );
65
66 // Caracteristiques
67   void                   SetType( CORBA::Long Type );
68   CORBA::Long            GetType();
69
70   void                   SetMeshName( const char* MeshName );
71   char*                  GetMeshName();
72
73   void                   SetMeshFile( const char* MeshFile );
74   char*                  GetMeshFile();
75
76   void                   SetCylinder( double Xcentre, double Ycentre, double ZCentre,
77                                       double Xaxe, double Yaxe, double Zaxe,
78                                       double rayon );
79   void                   SetSphere( double Xcentre, double Ycentre, double ZCentre,
80                                     double rayon );
81   void                   SetConeR( double Xcentre1, double Ycentre1, double Zcentre1, double Rayon1,
82                                    double Xcentre2, double Ycentre2, double Zcentre2, double Rayon2);
83   void                   SetConeA( double Xaxe, double Yaxe, double Zaxe, double Angle,
84                                    double Xcentre, double Ycentre, double ZCentre);
85
86   HOMARD::double_array*  GetCoords();
87
88   void                   SetLimit( double Xincr, double Yincr, double Zincr);
89   HOMARD::double_array*  GetLimit();
90
91   void                   AddGroup( const char* Group);
92   void                   SetGroups(const HOMARD::ListGroupType& ListGroup);
93   HOMARD::ListGroupType* GetGroups();
94
95 // Liens avec les autres structures
96   void                   SetCaseCreation( const char* NomCaseCreation );
97   char*                  GetCaseCreation();
98
99
100 private:
101   ::HOMARD_Boundary*     myHomardBoundary;
102
103   CORBA::ORB_ptr         _orb;
104   HOMARD::HOMARD_Gen_var _gen_i;
105 };
106
107 #endif