]> Creatis software - gdcm.git/blob - Testing/TestBug.cxx
* Doc/Doxyfile configuration file for Doxygen and corresponding
[gdcm.git] / Testing / 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->LoadElements();
13         e1->PrintPubDict();
14 }
15
16
17