]> Creatis software - gdcm.git/blobdiff - Testing/TestChangeHeader.cxx
use GDCM_NAME_SPACE:: instead of gdcm::, even in Examples ...
[gdcm.git] / Testing / TestChangeHeader.cxx
index 9739ebaec142c04e642a3567f4598cf99dbc10bc..dc7919a1e2dc0a891c69ddc8e7791c2985e36222 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: TestChangeHeader.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/02/02 12:02:33 $
-  Version:   $Revision: 1.34 $
+  Date:      $Date: 2008/09/15 15:49:21 $
+  Version:   $Revision: 1.36 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
      PURPOSE.  See the above copyright notices for more information.
                                                                                 
 =========================================================================*/
-#include "gdcmHeader.h"
+#include "gdcmFileHelper.h"
 #include "gdcmFile.h"
 
 // Writting of a DICOM file, using a correct gdcmHeader.
 // and pixels of an other image
 
 
+// NO SYNTAX UPDATED
+// Doesn't compile !
+
 int TestChangeHeader(int argc, char *argv[])
 {
    if (argc < 3)
@@ -32,10 +35,12 @@ int TestChangeHeader(int argc, char *argv[])
    }
 
    std::string firstArgument = argv[1];
-   gdcmFile  *f1 = new gdcmFile(firstArgument);
-
+   
+   GDCM_NAME_SPACE::File  *f1 = new GDCM_NAME_SPACE::File();
+   f1->SetFileName(firstArgument);
+   f1->Load( );
    std::string secondArgument = argv[2];
-   gdcmFile  *f2 = new gdcmFile(secondArgument);
+   GDCM_NAME_SPACE::File  *f2 = new GDCM_NAME_SPACE::File(secondArgument);
 
    //f1->PrintPubElVal();