X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirMeta.cxx;h=0c98a59d551d94e1f110663e6b69c6d27985749c;hb=b06cbd9177331d793223eac6bf8b2bccf874e7e3;hp=37c66051e5ea136daf2263f22e94600db4199fc7;hpb=66c8b2ef6c096d675afb963778604ed7ae72a78c;p=gdcm.git diff --git a/src/gdcmDicomDirMeta.cxx b/src/gdcmDicomDirMeta.cxx index 37c66051..0c98a59d 100644 --- a/src/gdcmDicomDirMeta.cxx +++ b/src/gdcmDicomDirMeta.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDirMeta.cxx,v $ Language: C++ - Date: $Date: 2007/07/26 08:36:49 $ - Version: $Revision: 1.38 $ + Date: $Date: 2007/08/29 15:30:48 $ + Version: $Revision: 1.39 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -53,11 +53,11 @@ DicomDirMeta::~DicomDirMeta() /** * \brief Writes the Meta Elements * @param fp ofstream to write to - * @param filetype type of the file (ImplicitVR, ExplicitVR, ...) + * @param filetype type of the file (ImplicitVR, ExplicitVR, JPEG, JPEG2000 ...) * @return */ void DicomDirMeta::WriteContent(std::ofstream *fp, FileType filetype, - bool insideMetaElements) + bool dummy, bool dummy2) { // 'File Meta Information Version' @@ -86,7 +86,7 @@ void DicomDirMeta::WriteContent(std::ofstream *fp, FileType filetype, ++i) { // true : we are in MetaElements - (*i)->WriteContent(fp, filetype, true); + (*i)->WriteContent(fp, filetype, true, false); } }