]> Creatis software - gdcm.git/blobdiff - Example/TestWriteSimple.cxx
ENH: Adding 'gdcm' namespace. Be nice with me this was a ~13000 lines patch. Also...
[gdcm.git] / Example / TestWriteSimple.cxx
index 379658695c0300789dffb6a0bc666b4c86f05d77..0c03379cdca49e303c9f935e82eb8683490ace17 100644 (file)
@@ -13,8 +13,8 @@ int main(int argc, char* argv[])
   std::string header = argv[1];
   const char *output = argv[2];
 
-  gdcmHeader *f1 = new gdcmHeader( header );
-  gdcmFile   *f2 = new gdcmFile( f1 );
+  gdcm::Header *f1 = new gdcm::Header( header );
+  gdcm::File   *f2 = new gdcm::File( f1 );
 
   // If the following call is important, then the API sucks. Why is it
   // required to allocate PixelData when we are not using it !?