X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FTestDcm2Acr.cxx;h=59282f0bebd1095d960242740c111f6570a1e2e9;hb=e00d30b2e0c279df62f8c0987ec4035718fa9379;hp=8a2996b54416fb2518b575a4f8c19125bae27b58;hpb=8fca7bc2830904113dbb5521c009775d964c5c98;p=gdcm.git diff --git a/Example/TestDcm2Acr.cxx b/Example/TestDcm2Acr.cxx index 8a2996b5..59282f0b 100644 --- a/Example/TestDcm2Acr.cxx +++ b/Example/TestDcm2Acr.cxx @@ -6,18 +6,18 @@ int main(int argc, char* argv[]) std::string toto; char zozo[100]; - gdcmFile * f1; + gdcm::File * f1; printf (" Before gdcmFile() \n"); printf ("\n\n---------------------------------------\n\n"); if (argc > 1) { toto = argv[1]; - f1 = new gdcmFile(toto); + f1 = new gdcm::File(toto); } else { std::string filename = GDCM_DATA_ROOT; filename += "/test.acr"; - f1 = new gdcmFile(filename.c_str()); + f1 = new gdcm::File(filename.c_str()); } printf (" Sortie gdcmFile() \n");