dwww Home | Show directory contents | Find package

%module template_const_ref
%inline %{
template <class T> class Foo {
public:
        char *bar(const T &obj) {
            return (char *) "Foo::bar";
        }
};
class Bar { };
%}

%template(Foob) Foo<const Bar *>;
%template(Fooi) Foo<const int *>;

Generated by dwww version 1.15 on Tue Jul 2 00:20:01 CEST 2024.