Salome HOME
Initialisation de la base KERNEL avec la version operationnelle de KERNEL_SRC issue...
[modules/kernel.git] / src / HDFPersist / HDFobject.hxx
1 #ifndef HDFOBJECT_HXX
2 #define HDFOBJECT_HXX
3
4 extern "C"
5 {
6 #include "HDFtypes.h"
7 }
8
9 class HDFobject {
10 protected :
11   char *_name;
12   hdf_idt _id;
13 public :
14   HDFobject(char *name);
15   virtual ~HDFobject();
16
17   hdf_idt GetId();
18   char *GetName();
19   virtual hdf_object_type GetObjectType();
20   
21 };
22
23 #endif /* HDFOBJECT_HXX */ 
24