X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Testing%2FTestChangeHeader.cxx;h=9739ebaec142c04e642a3567f4598cf99dbc10bc;hb=af53562fa5426146d01a30244cc4a7df9d6927b0;hp=7d7723f2548b9e25bde95632c5f5f914987eb1da;hpb=2aa990262ad42625affdb0d6866bb3afe646f965;p=gdcm.git diff --git a/Testing/TestChangeHeader.cxx b/Testing/TestChangeHeader.cxx index 7d7723f2..9739ebae 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/01/25 15:29:33 $ - Version: $Revision: 1.32 $ + Date: $Date: 2005/02/02 12:02:33 $ + Version: $Revision: 1.34 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -22,7 +22,7 @@ // and pixels of an other image -int TestChangeHeader(int argc, char* argv[]) +int TestChangeHeader(int argc, char *argv[]) { if (argc < 3) { @@ -42,7 +42,7 @@ int TestChangeHeader(int argc, char* argv[]) // We suppose the DICOM Entries of the second file *does* exist ! std::string nbFrames = f2->GetHeader()->GetEntryValue(0x0028, 0x0008); - if(nbFrames != "gdcm::Unfound") + if(nbFrames != GDCM_UNFOUND) { f1->GetHeader()->Insert( nbFrames, 0x0028, 0x0008); } @@ -77,9 +77,9 @@ int TestChangeHeader(int argc, char* argv[]) int dataSize = f2->GetImageDataSize(); printf ("dataSize %d\n",dataSize); - uint8_t* imageData= f2->GetImageData(); + uint8_t *imageData= f2->GetImageData(); -// TODO : Why don't we merge theese 2 functions ? +// TODO : Why don't we merge these 2 functions ? f1->SetImageData(imageData,dataSize);