]> Creatis software - gdcm.git/blob - Testing/ExceptionAndPython/foo.cxx.minimal
ENH: do not run dash
[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 }