]> Creatis software - gdcm.git/blob - Testing/ExceptionAndPython/foo.cxx.minimal
in ordrer to display the *stored* length when xxx.Print()
[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 }