X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FFindTags.cxx;h=20a3d52ae9007dfeb699c0c746d176989116f1be;hb=267b1104db8677b124a47ac8f37f81e1fbb2c546;hp=8439e9f9df47789e6cea68ff56967b6f5828114a;hpb=64429225702c1ca65ea3b6882be0e19c94509843;p=gdcm.git diff --git a/Example/FindTags.cxx b/Example/FindTags.cxx index 8439e9f9..20a3d52a 100644 --- a/Example/FindTags.cxx +++ b/Example/FindTags.cxx @@ -6,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 ";