X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmDicomDirMeta.cxx;h=516150de0cd29c7635ccbe431ebab977b28d5312;hb=0591e5cbe0d6136167a7ff5f2086d893f2111d58;hp=b1e40f543df216e2f677d1e95de7b775780d431d;hpb=e8caac199c2683cb0f118c42c61dc6aec85b1eec;p=gdcm.git diff --git a/src/gdcmDicomDirMeta.cxx b/src/gdcmDicomDirMeta.cxx index b1e40f54..516150de 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/16 04:50:41 $ - Version: $Revision: 1.21 $ + Date: $Date: 2005/01/20 16:16:42 $ + Version: $Revision: 1.24 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -19,6 +19,7 @@ #include "gdcmDicomDirMeta.h" #include "gdcmDocument.h" #include "gdcmDocEntry.h" +#include "gdcmGlobal.h" namespace gdcm { @@ -27,16 +28,20 @@ namespace gdcm // Constructor / Destructor /** - * \ingroup DicomDirMeta * \brief Constructor */ -DicomDirMeta::DicomDirMeta(): +DicomDirMeta::DicomDirMeta(bool empty): DicomDirObject() { + if( !empty ) + { + ListDicomDirStudyElem const &elemList = + Global::GetDicomDirElements()->GetDicomDirMetaElements(); + FillObject(elemList); + } } /** - * \ingroup DicomDirMeta * \brief Canonical destructor. */ DicomDirMeta::~DicomDirMeta() @@ -47,6 +52,8 @@ DicomDirMeta::~DicomDirMeta() // Print /** * \brief Prints the Meta Elements + * @param os ostream to write to + * @param indent indent */ void DicomDirMeta::Print(std::ostream &os, std::string const & ) { @@ -69,6 +76,8 @@ void DicomDirMeta::Print(std::ostream &os, std::string const & ) /** * \brief Writes the Meta Elements + * @param fp ofstream to write to + * @param t File Type * @return */ void DicomDirMeta::WriteContent(std::ofstream *fp, FileType t) @@ -88,5 +97,4 @@ void DicomDirMeta::WriteContent(std::ofstream *fp, FileType t) // Private //----------------------------------------------------------------------------- - } // end namespace gdcm