X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FWriteDicom.cxx;h=c8747dc3a3251abc7a6526d173aa4ba82427bae6;hb=dc2846f4750cf09f08d5f356792b8a12f2a97a2f;hp=18d798fd10bc39011fce5a5ff053c8dfff9af4a0;hpb=692f863c018c259a380e664d3608a46ec0c8bb3e;p=gdcm.git diff --git a/Example/WriteDicom.cxx b/Example/WriteDicom.cxx index 18d798fd..c8747dc3 100644 --- a/Example/WriteDicom.cxx +++ b/Example/WriteDicom.cxx @@ -1,3 +1,20 @@ +/*========================================================================= + + Program: gdcm + Module: $RCSfile: WriteDicom.cxx,v $ + Language: C++ + Date: $Date: 2004/11/16 04:26:18 $ + Version: $Revision: 1.7 $ + + Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de + l'Image). All rights reserved. See Doc/License.txt or + http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ #include "gdcm.h" // Writting of a DICOM file based on a correct dicom header @@ -14,10 +31,10 @@ int main(int argc, char* argv[]) } const char *first = argv[1]; - gdcmFile *f1 = new gdcmFile( first ); + gdcm::File *f1 = new gdcm::File( first ); const char *second = argv[2]; - gdcmFile *f2 = new gdcmFile( second ); + gdcm::File *f2 = new gdcm::File( second ); // We assume that DICOM fields of second file actually exists :