X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=Testing%2FTestChangeHeader.cxx;h=bfdc2ba282b89732c8a7b32dd92d363c78709870;hb=9d461db5c5d954548cd07d1fa095e9bad43a0cac;hp=9739ebaec142c04e642a3567f4598cf99dbc10bc;hpb=6fb9651c7810f2d875315442c4c4d27e6e6d9cb5;p=gdcm.git diff --git a/Testing/TestChangeHeader.cxx b/Testing/TestChangeHeader.cxx index 9739ebae..bfdc2ba2 100644 --- a/Testing/TestChangeHeader.cxx +++ b/Testing/TestChangeHeader.cxx @@ -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: 2005/07/08 13:39:57 $ + Version: $Revision: 1.35 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -15,13 +15,16 @@ 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::File *f1 = new gdcm::File(); + f1->SetFileName(firstArgument); + f1->Load( ); std::string secondArgument = argv[2]; - gdcmFile *f2 = new gdcmFile(secondArgument); + gdcm::File *f2 = new gdcm::File(secondArgument); //f1->PrintPubElVal();