renamed lib_xxxx to li_xxxx

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@6598 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2004-11-01 23:33:12 +00:00
commit 9af665a99a
6 changed files with 6 additions and 6 deletions

View file

@ -1,21 +0,0 @@
%module lib_std_except
%include <std_except.i>
%inline %{
struct E1 : public std::exception
{
};
struct E2
{
};
struct Test {
int foo1() throw(std::bad_exception) { return 0; }
int foo2() throw(std::logic_error) { return 0; }
int foo3() throw(E1) { return 0; }
int foo4() throw(E2) { return 0; }
};
%}