]> Creatis software - gdcm.git/commit
Due to something stupid in the gdcm::File constructor, the file was parsed twice
authorjpr <jpr>
Thu, 7 Jul 2005 10:12:32 +0000 (10:12 +0000)
committerjpr <jpr>
Thu, 7 Jul 2005 10:12:32 +0000 (10:12 +0000)
commit0aae6ba79c12b82eee08dd7f2e22397e1eca6acf
treec20f1e9413ce89c770d2a7178f6029f5c8f79a7b
parentdfa6db1c22f6b67eceb10c1ef94a91a643e36dd2
Due to something stupid in the gdcm::File constructor, the file was parsed twice
when we used old style, e.g :
gdcm::File *f = new gdcm::File(fileName);
instead of new style, e.g. :
gdcm::File *f = new gdcm::File( );
f->SetLoadMode ( choose what you want *not* to load here );
f->Load( filename );
src/gdcmFile.cxx