Salome HOME
Copyright update 2021
[modules/homard.git] / src / HOMARD_I / HOMARD_Zone_i.hxx
1 // Copyright (C) 2011-2021  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, or (at your option) any later version.
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 // Remarques :
21 // L'ordre de description des fonctions est le meme dans tous les fichiers
22 // HOMARD_aaaa.idl, HOMARD_aaaa.hxx, HOMARD_aaaa.cxx, HOMARD_aaaa_i.hxx, HOMARD_aaaa_i.cxx :
23 // 1. Les generalites : Name, Delete, DumpPython, Dump, Restore
24 // 2. Les caracteristiques
25 // 3. Le lien avec les autres structures
26 //
27 // Quand les 2 fonctions Setxxx et Getxxx sont presentes, Setxxx est decrit en premier
28 //
29
30 #ifndef _HOMARD_Zone_I_HXX_
31 #define _HOMARD_Zone_I_HXX_
32
33 #include <SALOMEconfig.h>
34 #include CORBA_SERVER_HEADER(HOMARD_Gen)
35 #include CORBA_SERVER_HEADER(HOMARD_Zone)
36
37 #include "HOMARD_i.hxx"
38 #include "SALOME_Component_i.hxx"
39 #include "SALOME_NamingService.hxx"
40 #include "Utils_CorbaException.hxx"
41
42 #include <string>
43
44 class HOMARD_Zone;
45
46 class HOMARDENGINE_EXPORT HOMARD_Zone_i:
47   public virtual Engines_Component_i,
48   public virtual POA_HOMARD::HOMARD_Zone,
49   public virtual PortableServer::ServantBase
50 {
51 public:
52   HOMARD_Zone_i( CORBA::ORB_ptr orb, HOMARD::HOMARD_Gen_var gen_i );
53   HOMARD_Zone_i();
54
55   virtual ~HOMARD_Zone_i();
56
57 // Generalites
58   void                   SetName( const char* Name );
59   char*                  GetName();
60
61   CORBA::Long            Delete();
62
63   char*                  GetDumpPython();
64
65   std::string            Dump() const;
66   bool                   Restore( const std::string& stream );
67
68 // Caracteristiques
69   void                   SetType( CORBA::Long Type );
70   CORBA::Long            GetType();
71
72   void                   SetBox( double Xmini, double Xmaxi,
73                                  double Ymini, double Ymaxi,
74                                  double Zmini, double Zmaxi );
75
76   void                   SetCylinder( double Xcentre, double Ycentre, double ZCentre,
77                                       double Xaxis, double Yaxis, double Zaxis,
78                                       double Rayon, double Haut );
79
80   void                   SetPipe( double Xcentre, double Ycentre, double ZCentre,
81                                   double Xaxis, double Yaxis, double Zaxis,
82                                   double Rayon, double Haut, double Rayonint );
83
84   void                   SetSphere( double Xcentre, double Ycentre, double ZCentre,
85                                     double Rayon );
86
87   HOMARD::double_array*  GetCoords();
88
89   void                   SetLimit( double Xincr, double Yincr, double Zincr);
90   HOMARD::double_array*  GetLimit();
91
92 // Liens avec les autres structures
93   void                   AddHypo( const char *NomHypo );
94   HOMARD::listeHypo*     GetHypo();
95   void                   SupprHypo( const char *NomHypo );
96
97 private:
98   ::HOMARD_Zone*         myHomardZone;
99
100   CORBA::ORB_ptr         _orb;
101   HOMARD::HOMARD_Gen_var _gen_i;
102 };
103
104 #endif