git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8249 626c5289-ae23-0410-ae9c-e8d60b6d4f22
21 lines
301 B
OpenEdge ABL
21 lines
301 B
OpenEdge ABL
%module template_ns3
|
|
|
|
%warnfilter(SWIGWARN_RUBY_WRONG_NAME) foo::bar<int>; /* Ruby, wrong class name */
|
|
|
|
%inline %{
|
|
namespace foo {
|
|
typedef int Integer;
|
|
|
|
template<class T> class bar {
|
|
public:
|
|
Integer test(Integer x) { return x; }
|
|
};
|
|
|
|
}
|
|
%}
|
|
|
|
%template(bari) foo::bar<int>;
|
|
|
|
|
|
|
|
|