X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmHeader.h;h=a6a33af2ade3f2c8c0feef2a6d1e0cbd252b00a2;hb=0fa193d8b312b90f2ee822e1ee87f6e2fbd1dcb5;hp=a634e1f56a425eeeb997548e4ed7264499e4698f;hpb=05abd393cf82392c894dd1d852e2273b0648671d;p=gdcm.git diff --git a/src/gdcmHeader.h b/src/gdcmHeader.h index a634e1f5..a6a33af2 100644 --- a/src/gdcmHeader.h +++ b/src/gdcmHeader.h @@ -1,4 +1,4 @@ -// $Header: /cvs/public/gdcm/src/Attic/gdcmHeader.h,v 1.24 2003/05/21 14:42:46 frog Exp $ +// $Header: /cvs/public/gdcm/src/Attic/gdcmHeader.h,v 1.26 2003/05/28 19:36:21 frog Exp $ #ifndef GDCMHEADER_H #define GDCMHEADER_H @@ -81,12 +81,12 @@ private: void SetMaxSizeLoadElementValue(long); gdcmDictEntry * GetDictEntryByNumber(guint16, guint16); - gdcmDictEntry * GetDictEntryByName(std::string name); + gdcmDictEntry * GetDictEntryByName(std::string Name); // ElValue related utilities gdcmElValue * ReadNextElement(void); gdcmElValue * NewElValueByNumber(guint16 group, guint16 element); - gdcmElValue * NewElValueByName(std::string name); + gdcmElValue * NewElValueByName(std::string Name); void FindLength(gdcmElValue *); void FindVR(gdcmElValue *); @@ -108,8 +108,8 @@ protected: bool OpenFile(bool exception_on_error = false) throw(gdcmFileError); bool CloseFile(void); - int write(ostream&); - int anonymize(ostream&); // FIXME : anonymize should be a friend ? + int write(std::ostream&); + int anonymize(std::ostream&); // FIXME : anonymize should be a friend ? public: bool IsReadable(void); bool IsImplicitVRLittleEndianTransferSyntax(void); @@ -142,8 +142,8 @@ public: std::string GetPubElValRepByNumber(guint16 group, guint16 element); TagElValueHT & GetPubElVal(void) { return PubElValSet.GetTagHt(); }; - void PrintPubElVal(ostream & os = cout); - void PrintPubDict (ostream & os = cout); + void PrintPubElVal(std::ostream & os = std::cout); + void PrintPubDict (std::ostream & os = std::cout); // TODO Swig std::string* GetShaTagNames(); std::string GetShaElValByName(std::string TagName); @@ -158,7 +158,7 @@ public: int SetPubElValByName(std::string content, std::string TagName); int SetPubElValByNumber(std::string content, guint16 group, guint16 element); - int SetShaElValByName(std::string content, std::string ShadowTagName); + int SetShaElValByName(std::string content, std::string TagName); int SetShaElValByNumber(std::string content, guint16 group, guint16 element); int SetPubElValLengthByNumber(guint32 lgr, guint16 group, guint16 element);