]> Creatis software - gdcm.git/blob - src/gdcmDicomDirImage.h
moved from gdcmParser to gdcmDocument.
[gdcm.git] / src / gdcmDicomDirImage.h
1 // gdcmDicomDirImage.h
2 //-----------------------------------------------------------------------------
3 #ifndef GDCMDICOMIMAGE_H
4 #define GDCMDICOMIMAGE_H
5
6 #include "gdcmObject.h"
7
8 //-----------------------------------------------------------------------------
9 class GDCM_EXPORT gdcmDicomDirImage : public gdcmObject {
10 public:
11    gdcmDicomDirImage(gdcmSQItem *s, TagDocEntryHT *ptagHT); 
12    gdcmDicomDirImage(TagDocEntryHT *ptagHT); 
13
14    ~gdcmDicomDirImage(void);
15
16    virtual void Print(std::ostream &os = std::cout);      
17 };
18
19 //-----------------------------------------------------------------------------
20 #endif