X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirMeta.cxx;h=ec3d35b4d4ca69c3dcc1af5f9c7d371f2f8bd535;hb=713a45d76c97b5b97a7ea5a68ea1fcf56321e4f0;hp=11602a6659824365deb59109a39c39d97e2e4307;hpb=aaeee7164728ec0749a525f0c74274865712ec37;p=gdcm.git diff --git a/src/gdcmDicomDirMeta.cxx b/src/gdcmDicomDirMeta.cxx index 11602a66..ec3d35b4 100644 --- a/src/gdcmDicomDirMeta.cxx +++ b/src/gdcmDicomDirMeta.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirMeta.cxx,v $ Language: C++ - Date: $Date: 2005/01/24 16:10:52 $ - Version: $Revision: 1.26 $ + Date: $Date: 2005/02/01 10:29:55 $ + Version: $Revision: 1.27 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -23,10 +23,8 @@ namespace gdcm { - //----------------------------------------------------------------------------- // Constructor / Destructor - /** * \brief Constructor */ @@ -48,32 +46,8 @@ DicomDirMeta::~DicomDirMeta() { } -//----------------------------------------------------------------------------- -// Print -/** - * \brief Prints the Meta Elements - * @param os ostream to write to - * @param indent Indentation string to be prepended during printing - */ -void DicomDirMeta::Print(std::ostream &os, std::string const & ) -{ - os << "META" << std::endl; - // warning : META doesn't behave exactly like a Objet - for (ListDocEntry::iterator i = DocEntries.begin(); - i != DocEntries.end(); - ++i) - { - (*i)->SetPrintLevel(PrintLevel); - (*i)->Print(); - os << std::endl; - } -} - - //----------------------------------------------------------------------------- // Public - - /** * \brief Writes the Meta Elements * @param fp ofstream to write to @@ -96,5 +70,26 @@ void DicomDirMeta::WriteContent(std::ofstream *fp, FileType filetype) //----------------------------------------------------------------------------- // Private +//----------------------------------------------------------------------------- +// Print +/** + * \brief Prints the Meta Elements + * @param os ostream to write to + * @param indent Indentation string to be prepended during printing + */ +void DicomDirMeta::Print(std::ostream &os, std::string const & ) +{ + os << "META" << std::endl; + // warning : META doesn't behave exactly like a Objet + for (ListDocEntry::iterator i = DocEntries.begin(); + i != DocEntries.end(); + ++i) + { + (*i)->SetPrintLevel(PrintLevel); + (*i)->Print(); + os << std::endl; + } +} + //----------------------------------------------------------------------------- } // end namespace gdcm