]> Creatis software - gdcm.git/blob - src/gdcmObject.h
in ordrer to display the *stored* length when xxx.Print()
[gdcm.git] / src / gdcmObject.h
1 // gdcmObject.h
2 //-----------------------------------------------------------------------------
3 #ifndef GDCMOBJECT_H
4 #define GDCMOBJECT_H
5
6 #include <string>
7 #include <list>
8 #include "gdcmCommon.h"
9 #include "gdcmHeaderEntry.h"
10 #include "gdcmParser.h"
11
12 //-----------------------------------------------------------------------------
13 class gdcmObject;
14 typedef std::list<gdcmObject *> ListContent;
15
16 //-----------------------------------------------------------------------------
17 class gdcmObject {
18 public:
19    std::string GetEntryByNumber(guint16 group, guint16 element);
20    std::string GetEntryByName(TagName name);
21
22    ListTag::iterator beginObj;
23    ListTag::iterator endObj;
24    
25 protected:
26 };
27
28 //-----------------------------------------------------------------------------
29 #endif