git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5161 626c5289-ae23-0410-ae9c-e8d60b6d4f22
11 lines
153 B
OpenEdge ABL
11 lines
153 B
OpenEdge ABL
%module extern_throws
|
|
%inline %{
|
|
#include <exception>
|
|
extern int get() throw(std::exception);
|
|
|
|
%}
|
|
|
|
%{
|
|
int get() throw(std::exception) { return 0; }
|
|
%}
|
|
|