X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmElValSet.h;h=ba351707f53fd19f218993c2bfe2c658c6029744;hb=724fc941e10045f4e21ac6bdd7d8e89c3b68bbf9;hp=e59c9fe3875208497803614dd805fd42cdb9b254;hpb=565a47ec4e037897aaf770aeccc5d67d7ad7b478;p=gdcm.git diff --git a/src/gdcmElValSet.h b/src/gdcmElValSet.h index e59c9fe3..ba351707 100644 --- a/src/gdcmElValSet.h +++ b/src/gdcmElValSet.h @@ -1,4 +1,4 @@ -// gdcmElValSet.h +// $Header: /cvs/public/gdcm/src/Attic/gdcmElValSet.h,v 1.3 2003/03/12 21:33:20 frog Exp $ #ifndef GDCMELVALSET_H #define GDCMELVALSET_H @@ -10,19 +10,20 @@ //////////////////////////////////////////////////////////////////////////// // Container for a set of successfully parsed ElValues. -typedef map TagElValueHT; -typedef map TagElValueNameHT; +typedef map TagElValueHT; +typedef map TagElValueNameHT; -class GDCM_EXPORT ElValSet { +class GDCM_EXPORT gdcmElValSet { TagElValueHT tagHt; // Both accesses with a TagKey or with a TagElValueNameHT NameHt; // the DictEntry.Name are required. public: - void Add(ElValue*); + void Add(gdcmElValue*); void Print(ostream &); void PrintByName(ostream &); int Write(FILE *fp); - ElValue* GetElementByNumber(guint32 group, guint32 element); - ElValue* GetElementByName (string); + int WriteAcr(FILE *fp); + gdcmElValue* GetElementByNumber(guint32 group, guint32 element); + gdcmElValue* GetElementByName (string); string GetElValueByNumber(guint32 group, guint32 element); string GetElValueByName (string);