X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=inline;f=src%2FgdcmDocEntry.h;h=62757c34d1c88d70dd88739fcbe5f91ffa934650;hb=99ac30f10909a566e9506776d33dfacc300d4502;hp=45cf710fd3787229e7d173e18b7ead1742cc9748;hpb=7b3410ee413b056e0e599a4800ea836c8b56152b;p=gdcm.git diff --git a/src/gdcmDocEntry.h b/src/gdcmDocEntry.h index 45cf710f..62757c34 100644 --- a/src/gdcmDocEntry.h +++ b/src/gdcmDocEntry.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDocEntry.h,v $ Language: C++ - Date: $Date: 2004/10/25 04:08:20 $ - Version: $Revision: 1.28 $ + Date: $Date: 2004/12/03 20:16:58 $ + Version: $Revision: 1.32 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -20,15 +20,17 @@ #define GDCMDOCENTRY_H #include "gdcmDictEntry.h" + #include +#include +namespace gdcm +{ class Header; class ValEntry; class BinEntry; class SeqEntry; -namespace gdcm -{ //----------------------------------------------------------------------------- /** * \brief The dicom header of a Dicom file contains a set of such entries @@ -126,7 +128,7 @@ public: int GetPrintLevel() { return PrintLevel; }; virtual void Print (std::ostream & os = std::cout); - virtual void Write(std::ofstream *fp, FileType filetype); + virtual void WriteContent(std::ofstream *fp, FileType filetype); uint32_t GetFullLength(); @@ -166,8 +168,8 @@ protected: /// How many details are to be printed (value : 0,1,2) int PrintLevel; - /// \brief Generalized key (i.e. a BaseTagKey prepending a TagKey) - /// of this DocEntry + /// \brief Generalized key of this DocEntry (for details on + /// the generalized key refer to \ref TagKey documentation). TagKey Key; }; } // end namespace gdcm