]> Creatis software - gdcm.git/commitdiff
string replaced by std::string
authorjpr <jpr>
Mon, 15 Mar 2004 14:46:38 +0000 (14:46 +0000)
committerjpr <jpr>
Mon, 15 Mar 2004 14:46:38 +0000 (14:46 +0000)
:-(

src/gdcmDicomDir.cxx

index 34ceb7dc6da8e8dac47d84ccc7b4ac6fbc80aff9..14b5b41b1e1d2dda067458315e52fb77f7a1ecb2 100644 (file)
@@ -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();