]> Creatis software - gdcm.git/blobdiff - Example/FindTags.cxx
ENH: Adding 'gdcm' namespace. Be nice with me this was a ~13000 lines patch. Also...
[gdcm.git] / Example / FindTags.cxx
index 8439e9f9df47789e6cea68ff56967b6f5828114a..20a3d52ae9007dfeb699c0c746d176989116f1be 100644 (file)
@@ -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 ";