]> Creatis software - gdcm.git/blob - Testing/ExceptionAndPython/foo.cxx.minimal
Fix : now dcm deals with 'No preamble', Big Endian Explicit VR group 0002.
[gdcm.git] / Testing / ExceptionAndPython / foo.cxx.minimal
1 #include <iostream>
2
3 void MyWrappedFunction(void) {
4    try { throw "In thrower"; }
5    catch (const char * str) { cout<<"Exception"<< str << endl; }
6 }