]> Creatis software - gdcm.git/blob - src/gdcmSerie.h
in ordrer to display the *stored* length when xxx.Print()
[gdcm.git] / src / gdcmSerie.h
1 // gdcmSerie.h
2 //-----------------------------------------------------------------------------
3 #ifndef GDCMSERIE_H
4 #define GDCMSERIE_H
5
6 #include "gdcmObject.h"
7 #include "gdcmImage.h"
8
9 //-----------------------------------------------------------------------------
10
11 typedef std::list<gdcmImage *> lImage;
12
13 //-----------------------------------------------------------------------------
14
15 class GDCM_EXPORT gdcmSerie : public gdcmObject {
16 public:
17
18    gdcmSerie();
19    ~gdcmSerie();
20
21    inline lImage &GetImages() {return images;};
22    
23    lImage images;
24    
25 private:
26
27
28 };
29
30 //-----------------------------------------------------------------------------
31 #endif