X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmElValSet.h;h=37283f1334d5fd37b5680e3e5f30dd2d68cdcb2a;hb=9f643008e8a960617fb30ed9dcd454612657e5d2;hp=c5b59ed53cb990f1363aaa560ff832910450ac12;hpb=595f90023c498f01bba240043841088ba5d45872;p=gdcm.git diff --git a/src/gdcmElValSet.h b/src/gdcmElValSet.h index c5b59ed5..37283f13 100644 --- a/src/gdcmElValSet.h +++ b/src/gdcmElValSet.h @@ -1,4 +1,4 @@ -// $Header: /cvs/public/gdcm/src/Attic/gdcmElValSet.h,v 1.10 2003/04/09 14:04:53 jpr Exp $ +// $Header: /cvs/public/gdcm/src/Attic/gdcmElValSet.h,v 1.15 2003/06/26 13:07:01 jpr Exp $ #ifndef GDCMELVALSET_H #define GDCMELVALSET_H @@ -10,37 +10,39 @@ //////////////////////////////////////////////////////////////////////////// // Container for a set of successfully parsed ElValues. -typedef map TagElValueHT; -typedef map TagElValueNameHT; + +typedef std::map TagElValueHT; +typedef std::map TagElValueNameHT; class GDCM_EXPORT gdcmElValSet { TagElValueHT tagHt; // Both accesses with a TagKey or with a TagElValueNameHT NameHt; // the DictEntry.Name are required. - typedef string GroupKey; - typedef map GroupHT; - + typedef std::string GroupKey; + typedef std::map GroupHT; public: + ~gdcmElValSet(); void Add(gdcmElValue*); - void Print(ostream &); - void PrintByName(ostream &); + void Print(std::ostream &); + void PrintByName(std::ostream &); int Write(FILE *fp, FileType type); gdcmElValue* GetElementByNumber(guint16 group, guint16 element); - gdcmElValue* GetElementByName (string); - string GetElValueByNumber(guint16 group, guint16 element); - string GetElValueByName (string); + gdcmElValue* GetElementByName (std::string); + std::string GetElValueByNumber(guint16 group, guint16 element); + std::string GetElValueByName (std::string); TagElValueHT & GetTagHt(void); - int SetElValueByNumber(string content, guint16 group, guint16 element); - int SetElValueByName (string content, string TagName); + int SetElValueByNumber(std::string content, guint16 group, guint16 element); + int SetElValueByName (std::string content, std::string TagName); int SetElValueLengthByNumber(guint32 l, guint16 group, guint16 element); - int SetElValueLengthByName (guint32 l, string TagName); + int SetElValueLengthByName (guint32 l, std::string TagName); guint32 GenerateFreeTagKeyInGroup(guint16 group); + int CheckIfExistByNumber(guint16 Group, guint16 Elem ); private: void UpdateGroupLength(bool SkipSequence = false, FileType type = ImplicitVR);