]> SALOME platform Git repositories - modules/homard.git/blob - idl/HOMARD_Cas.idl
Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/homard.git] / idl / HOMARD_Cas.idl
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_IDL
21 #define _HOMARD_CAS_IDL
22
23 #include "SALOME_Component.idl"
24 #include "SALOME_Exception.idl"
25 #include "SALOMEDS.idl"
26
27 module HOMARD
28 {
29  typedef sequence<double> extrema ;
30  typedef sequence<string> ListGroupType ;
31  typedef sequence<string> ListBoundaryGroupType ;
32
33
34  interface HOMARD_Cas : Engines::EngineComponent
35   {
36
37     void     SetName(in string NomCas)                     raises (SALOME::SALOME_Exception);
38     string   GetName()                                     raises (SALOME::SALOME_Exception);
39
40     void     SetDirName(in string NomDir)                  raises (SALOME::SALOME_Exception);
41     string   GetDirName()                                  raises (SALOME::SALOME_Exception);
42
43     void     SetConfType(in long ConfType)                 raises (SALOME::SALOME_Exception);
44     long     GetConfType()                                 raises (SALOME::SALOME_Exception);
45
46     void     AddIteration (in string NomIteration)         raises (SALOME::SALOME_Exception);
47     string   GetIter0Name ()                               raises (SALOME::SALOME_Exception);
48
49     extrema  GetBoundingBox()                              raises (SALOME::SALOME_Exception);
50     void     SetBoundingBox(in extrema LesExtremes)        raises (SALOME::SALOME_Exception);
51
52     ListGroupType GetGroups()                              raises (SALOME::SALOME_Exception);
53     void     SetGroups(in ListGroupType ListGroup)         raises (SALOME::SALOME_Exception);
54     void     AddGroup(in string Group)                     raises (SALOME::SALOME_Exception);
55
56     long     GetNumber()                                   raises (SALOME::SALOME_Exception);
57     string   GetDumpPython()                               raises (SALOME::SALOME_Exception);
58
59     ListBoundaryGroupType GetBoundaryGroup()               raises (SALOME::SALOME_Exception);
60     void     AddBoundaryGroup(in string NomBoundary, in string Group)
61                                                            raises (SALOME::SALOME_Exception);
62
63     void     SetPyram(in long Pyram)                       raises (SALOME::SALOME_Exception);
64     long     GetPyram()                                    raises (SALOME::SALOME_Exception);
65
66   };
67 };
68 #endif