git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8306 626c5289-ae23-0410-ae9c-e8d60b6d4f22
12 lines
182 B
OpenEdge ABL
12 lines
182 B
OpenEdge ABL
// TODO: STL exception handling
|
|
// Note that the generic std_except.i file did not work
|
|
%{
|
|
#include <stdexcept>
|
|
%}
|
|
|
|
namespace std {
|
|
%ignore exception;
|
|
struct exception {
|
|
};
|
|
}
|
|
|