]> Creatis software - gdcm.git/blob - Testing/ExceptionAndPython/foo.cxx.minimal
* gdcmHeader is now aggregating gdcmFile, and not derived into. Thus, we
[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 }