swig/Examples/test-suite/typename.i
Dave Beazley 12a43edc2d The great merge
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4141 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2002-11-30 22:01:28 +00:00

34 lines
No EOL
466 B
OpenEdge ABL

%module "typename"
// Tests the typename handling in templates.
%inline %{
class Foo {
public:
typedef double Number;
Number blah() {
return 2.1828;
}
};
class Bar {
public:
typedef int Number;
Number blah() {
return 42;
}
};
template<typename T> typename T::Number twoblah(T &obj) {
return 2*(obj.blah());
}
Bar::Number spam() { return 3; }
%}
%template(twoFoo) twoblah<Foo>;
%template(twoBar) twoblah<Bar>;