// gdcmObject.h //----------------------------------------------------------------------------- #ifndef GDCMOBJECT_H #define GDCMOBJECT_H #include #include #include "gdcmCommon.h" #include "gdcmHeaderEntry.h" #include "gdcmParser.h" //----------------------------------------------------------------------------- class gdcmObject; typedef std::list ListContent; //----------------------------------------------------------------------------- class gdcmObject { public: std::string GetEntryByNumber(guint16 group, guint16 element); std::string GetEntryByName(TagName name); ListTag::iterator beginObj; ListTag::iterator endObj; protected: }; //----------------------------------------------------------------------------- #endif