]> Creatis software - gdcm.git/commitdiff
New() vs new()
authorjpr <jpr>
Thu, 3 Nov 2005 16:19:56 +0000 (16:19 +0000)
committerjpr <jpr>
Thu, 3 Nov 2005 16:19:56 +0000 (16:19 +0000)
Testing/dynmodule.cxx
Testing/loadmodule.cxx

index 2c9a664d51cea22e0338b3c9ac45df396c83dc1c..977725466b569312d87604cb6527fdf689614f1d 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: dynmodule.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/09/19 18:54:10 $
-  Version:   $Revision: 1.1 $
+  Date:      $Date: 2005/11/03 16:19:57 $
+  Version:   $Revision: 1.2 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -30,7 +30,7 @@ extern "C" __ELX_DLLEXPORT void afunc(void)
 
   // Create an instance of a gdcm class. This makes sure
   // that the problematic gdcm-library is linked.
-  gdcm::File *file = new gdcm::File();
+  gdcm::File *file = gdcm::File::New();
   
   std::cerr << "End of function afunc"  << std::endl; 
   
index 2cf7de4766bb2531c639a024e4dec673ea661205..a27aa99509052f08ca839b503f164d459629a0c7 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: loadmodule.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/09/19 18:54:10 $
-  Version:   $Revision: 1.1 $
+  Date:      $Date: 2005/11/03 16:19:56 $
+  Version:   $Revision: 1.2 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -77,7 +77,7 @@ int main(int, char* [])
   // Create an instance of the GDCMImageIO class. This makes sure
   // that the problematic gdcm-library is linked.
   //itk::GDCMImageIO::Pointer gdcmio = itk::GDCMImageIO::New();
-  gdcm::File *file = new gdcm::File();
+  gdcm::File *file = gdcm::File::New();
   
   std::cerr << "Closing libs" << std::endl;
   //dl::CloseLibrary(handle);