swig/Examples/test-suite/smart_pointer_overload.i
William S Fulton 1c8c536fb5 Warning fixes
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6627 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2004-11-02 21:27:32 +00:00

24 lines
337 B
OpenEdge ABL

%module smart_pointer_overload
#ifndef SWIG_NO_OVERLOAD
%inline %{
struct Foo {
int x;
int test(int y) { y = 0; return 1; }
int test(double y) { y = 0; return 2; }
int test(char *s) { s = 0; return 3; }
};
class Bar {
Foo *f;
public:
Bar(Foo *f) : f(f) { }
Foo *operator->() {
return f;
}
};
%}
#endif