X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FFindTags.cxx;h=20a3d52ae9007dfeb699c0c746d176989116f1be;hb=3c493a4f221c902828354a6fd5020402320cb6c9;hp=46aea14bc2f47702e5c01afe4bd4fbbec585fbac;hpb=8fca7bc2830904113dbb5521c009775d964c5c98;p=gdcm.git diff --git a/Example/FindTags.cxx b/Example/FindTags.cxx index 46aea14b..20a3d52a 100644 --- a/Example/FindTags.cxx +++ b/Example/FindTags.cxx @@ -1,5 +1,4 @@ #include -//#include #include "gdcm.h" #include "math.h" @@ -7,14 +6,14 @@ int main(int argc, char* argv[]) { std::string toto, titi; - gdcmFile * f1; + gdcm::File * f1; if(argc > 1 ) - f1 = new gdcmFile(argv[1]); + f1 = new gdcm::File(argv[1]); else { toto = GDCM_DATA_ROOT; toto += "/test.acr"; - f1 = new gdcmFile(toto); + f1 = new gdcm::File(toto); } std::string ManufacturerName="SIEMENS ";