]> Creatis software - gdcm.git/blob - src/gdcmDocEntrySet.h
forget this one
[gdcm.git] / src / gdcmDocEntrySet.h
1 // gdcmDocEntrySet.h
2 //-----------------------------------------------------------------------------
3 #ifndef GDCMDOCENTRYSET_H
4 #define GDCMDOCENTRYSET_H
5
6 #include "gdcmException.h"
7 #include "gdcmDocEntry.h"
8
9 //-----------------------------------------------------------------------------
10
11 class GDCM_EXPORT gdcmDocEntrySet
12 {
13
14 public:
15
16    gdcmDocEntrySet(void); 
17    ~gdcmDocEntrySet(void);
18
19    void FindDocEntryLength (gdcmDocEntry *Entry);
20
21 protected:
22
23 private:
24
25    bool LoadDocEntrySet(bool exception_on_error = false) 
26                      throw(gdcmFormatError);
27 };
28
29
30 //-----------------------------------------------------------------------------
31 #endif
32