swig/Examples/test-suite/package_b.i
Jason Stewart bea5f1d47b package option for perl5
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10393 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2008-04-26 13:12:45 +00:00

10 lines
No EOL
101 B
OpenEdge ABL

%module(package="C") "package_b";
%inline %{
class B
{
public:
int testInt() { return 4; }
};
%}