]> Creatis software - gdcm.git/blobdiff - Example/Write.cxx
* FIX : src/gdcmDocument.cxx Remove obvious code in the destructor
[gdcm.git] / Example / Write.cxx
index c1be99465ff6b23d546662b8d3c454e662f779ad..b9632bda2a4da7a581ce57e53908b364972ba511 100644 (file)
@@ -1,3 +1,20 @@
+/*=========================================================================
+                                                                                
+  Program:   gdcm
+  Module:    $RCSfile: Write.cxx,v $
+  Language:  C++
+  Date:      $Date: 2004/11/16 04:26:18 $
+  Version:   $Revision: 1.9 $
+                                                                                
+  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 <iostream>
 #include <stdio.h>
 #include "gdcm.h"
@@ -11,7 +28,7 @@ int main(int argc, char* argv[])
    gdcm::File  * f1;
 
    //gdcmDocument * d;  //not used
-   void* imageData;
+   uint8_t* imageData;
    int dataSize;
 
    if (argc < 3) {
@@ -92,6 +109,7 @@ int main(int argc, char* argv[])
                 << std::endl; 
    }
    imageData= f1->GetImageData();
+   (void)imageData;  // to avoid warnings
 
    switch (argv[2][0]) {
    case 'a' :