Salome HOME
1160dd4a91f0fadb39d586ce8bb1ec0c27537324
[modules/yacs.git] / src / HDFPersist / HDFconvert.hxx
1 #ifndef HDFCONVERT_HXX
2 #define HDFCONVERT_HXX
3
4 extern "C"
5 {
6 #include "HDFtypes.h"
7 #include <unistd.h>
8 #include <sys/mman.h>
9 #include <stdio.h>
10 #include <errno.h>
11 #include <sys/types.h>
12 #include <sys/stat.h>
13 #include <fcntl.h>
14 }
15 #include "HDFcontainerObject.hxx"
16 #include "HDFdataset.hxx"
17 #include "HDFfile.hxx"
18 #include <string>
19
20 class HDFConvert 
21 {
22 private:
23
24   HDFConvert();
25   ~HDFConvert();
26
27 public:
28
29 static int FromAscii(const string& file, const  HDFcontainerObject& hdf_container, const string& nomdataset);
30
31 };
32
33 #endif /* HDFCONVERT_HXX */