Salome HOME
Merging with the MAN_SALOME2 branch
[modules/med.git] / src / MedClient / src / MESHClient.hxx
1 #ifndef _MESHCLIENT_HXX
2 #define _MESHCLIENT_HXX
3
4 #include <SALOMEconfig.h>
5 #include <utilities.h>
6 #include "MEDMEM_Mesh.hxx"
7 #include CORBA_CLIENT_HEADER(MED)
8
9 namespace MEDMEM {
10 class MESHClient : public MESH {
11
12 private :
13
14   const SALOME_MED::MESH_var IOR_Mesh;
15
16   mutable bool _complete;
17   
18
19 public :
20
21   MESHClient(const SALOME_MED::MESH_ptr m);
22
23   virtual ~MESHClient();
24
25   void blankCopy();
26   void fillCopy();
27
28 };
29 }
30
31 #endif
32