Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef _SUPPORTCLIENT_HXX
00024 #define _SUPPORTCLIENT_HXX
00025
00026 #include <SALOMEconfig.h>
00027 #include <utilities.h>
00028 #include "MEDClient.hxx"
00029 #include "MEDMEM_Support.hxx"
00030 #include CORBA_CLIENT_HEADER(MED)
00031
00032
00033 namespace MEDMEM {
00034 class MEDCLIENT_EXPORT SUPPORTClient : virtual public SUPPORT {
00035
00036 private :
00037
00038 const SALOME_MED::SUPPORT_var IOR_Support;
00039
00040 mutable bool _complete_support;
00041
00042
00043
00044 protected:
00045
00046 virtual ~SUPPORTClient();
00047
00048 public :
00049
00050 SUPPORTClient(const SALOME_MED::SUPPORT_ptr S,
00051 GMESH * M = NULL);
00052
00053 void blankCopy();
00054 void fillCopy();
00055
00056 MEDSKYLINEARRAY * getnumber()
00057 const throw (MEDEXCEPTION);
00058 const int * getNumber(MED_EN::medGeometryElement GeometricType)
00059 const throw (MEDEXCEPTION);
00060 const int * getNumberIndex()
00061 const throw (MEDEXCEPTION);
00062 int getValIndFromGlobalNumber(const int number)
00063 const throw (MEDEXCEPTION);
00064
00065
00066 };
00067 }
00068
00069
00070 #endif
00071