X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=Example%2FTestCopyDicom.cxx;h=8d386103252e2a5c10f1a966909b1eaf18f0bdde;hb=d00078b5e19310b379c8339fa8fe38362e8ca392;hp=e7ced62bee59791c01d68ae2d0694bae9a3798e2;hpb=95484666ccfcdb26d6ff1ea57cb1cde7826b7a28;p=gdcm.git diff --git a/Example/TestCopyDicom.cxx b/Example/TestCopyDicom.cxx index e7ced62b..8d386103 100644 --- a/Example/TestCopyDicom.cxx +++ b/Example/TestCopyDicom.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: TestCopyDicom.cxx,v $ Language: C++ - Date: $Date: 2005/01/18 07:55:16 $ - Version: $Revision: 1.17 $ + Date: $Date: 2005/01/20 16:16:58 $ + Version: $Revision: 1.18 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -80,12 +80,12 @@ int main(int argc, char* argv[]) return 1; } } - gdcm::File *original = new gdcm::File( filename ); + gdcm::FileHelper *original = new gdcm::FileHelper( filename ); std::cout << "--- Original ----------------------" << std::endl; //original->GetHeader()->Print(); - gdcm::File *copy = new gdcm::File( output ); + gdcm::FileHelper *copy = new gdcm::FileHelper( output ); size_t dataSize = original->GetImageDataSize(); uint8_t* imageData = original->GetImageData();