]> Creatis software - gdcm.git/blob - Testing/TestBug.cxx
* src/gdcmHeader.h: LoadElements() is not a public method anymore
[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->PrintPubDict();
13 }
14
15
16