Salome HOME
dim and axiluary field added for hypothesis description
[modules/smesh.git] / src / SMESH_I / SMESH_MEDFamily_i.hxx
1 //  SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESH_MEDFamily_i.hxx
25 //  Module : SMESH
26
27 #ifndef SMESH_MED_FAMILY_I_HXX_
28 #define SMESH_MED_FAMILY_I_HXX_
29
30 #include "SMESH_MEDSupport_i.hxx"
31
32 #include<string>
33
34 class SMESH_MEDFamily_i:
35   public POA_SALOME_MED::FAMILY,
36   public SMESH_MEDSupport_i
37 {
38 protected :
39   SMESH_MEDFamily_i();
40   ~SMESH_MEDFamily_i();
41   
42   ::SMESH_subMesh_i*      _subMesh_i;
43   
44   // Values
45   int       _identifier;
46   int       _numberOfAttribute;
47   int    *  _attributeIdentifier;
48   int    *  _attributeValue;
49   string *  _attributeDescription;
50   int       _numberOfGroup ;
51   string *  _groupName ;
52   
53
54 public :
55   
56   // Constructors and associated internal methods
57   SMESH_MEDFamily_i(int identifier, SMESH_subMesh_i* sm,
58                     string name, string description, SALOME_MED::medEntityMesh entity );
59   SMESH_MEDFamily_i(const SMESH_MEDFamily_i & f);
60   
61   // IDL Methods
62   void setProtocol(SALOME::TypeOfCommunication typ) {}
63   void release() {}
64   SALOME::SenderInt_ptr getSenderForNumber(long int) {return SALOME::SenderInt::_nil();}
65   SALOME::SenderInt_ptr getSenderForNumberIndex() {return SALOME::SenderInt::_nil();}
66   
67   CORBA::Long            getIdentifier()      
68     throw (SALOME::SALOME_Exception);
69   CORBA::Long            getNumberOfAttributes() 
70     throw (SALOME::SALOME_Exception);
71   SALOME_MED::long_array*   getAttributesIdentifiers() 
72     throw (SALOME::SALOME_Exception);
73   CORBA::Long            getAttributeIdentifier(CORBA::Long i) 
74     throw (SALOME::SALOME_Exception);
75   SALOME_MED::long_array*   getAttributesValues() 
76     throw (SALOME::SALOME_Exception);
77   CORBA::Long            getAttributeValue(CORBA::Long i) 
78     throw (SALOME::SALOME_Exception);
79   SALOME_MED::string_array* getAttributesDescriptions() 
80     throw (SALOME::SALOME_Exception);
81   char*                  getAttributeDescription( CORBA::Long i) 
82     throw (SALOME::SALOME_Exception);
83   CORBA::Long               getNumberOfGroups()
84     throw (SALOME::SALOME_Exception);
85   char *                    getGroupName( CORBA::Long i)
86     throw (SALOME::SALOME_Exception);
87   SALOME_MED::string_array* getGroupsNames()
88     throw (SALOME::SALOME_Exception);  
89 };
90 #endif /* MED_FAMILY_I_HXX_ */