git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4141 626c5289-ae23-0410-ae9c-e8d60b6d4f22
18 lines
318 B
OpenEdge ABL
18 lines
318 B
OpenEdge ABL
%module template_ns_enum
|
|
%inline %{
|
|
namespace hello {
|
|
enum Hello { Hi, Hola };
|
|
|
|
template <Hello H>
|
|
struct traits
|
|
{
|
|
typedef double value_type;
|
|
};
|
|
|
|
traits<Hi>::value_type say_hi()
|
|
{
|
|
return traits<Hi>::value_type(1);
|
|
}
|
|
|
|
}
|
|
%}
|