]> Creatis software - gdcm.git/blob - TestBug.cxx
a7fc6b9bc09a8edad1cbe9a145d4e2799141b954
[gdcm.git] / TestBug.cxx
1 // The following crashes on Win32
2 #include "gdcm.h"
3
4 int main(int argc, char* argv[])
5 {  
6         gdcmHeader* e1;
7         
8         if (argc > 1)
9                 e1 = new gdcmHeader(argv[1]);
10         else
11                 e1 = new gdcmHeader("test.acr");
12         e1->PrintPubDict();
13 }
14
15
16