From: jpr Date: Mon, 15 Mar 2004 14:46:38 +0000 (+0000) Subject: string replaced by std::string X-Git-Tag: Version0.5.bp~294 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=adbbd930989c6e6fc8e1b76bfd7bdfe5cbcb430e;p=gdcm.git string replaced by std::string :-( --- diff --git a/src/gdcmDicomDir.cxx b/src/gdcmDicomDir.cxx index 34ceb7dc..14b5b41b 100644 --- a/src/gdcmDicomDir.cxx +++ b/src/gdcmDicomDir.cxx @@ -90,7 +90,7 @@ gdcmDicomDir::gdcmDicomDir(bool exception_on_error): progress=0.0; abort=false; - string pathBidon = ""; // Sorry, NULL not allowed ... + std::string pathBidon = ""; // Sorry, NULL not allowed ... SetElement(pathBidon, GDCM_DICOMDIR_META, NULL); // Set the META elements AddDicomDirMetaToEnd(listEntries.begin(),--listEntries.end()); @@ -864,7 +864,7 @@ void gdcmDicomDir::UpdateDirectoryRecordSequenceLength() { int offset = 0; ListTag::iterator it; guint16 gr, el; - string vr; + std::string vr; for(it=listEntries.begin();it!=listEntries.end();++it) { gr = (*it)->GetGroup(); el = (*it)->GetElement();