Files

24 lines
231 B
OpenEdge ABL
Raw Permalink Normal View History

%module namespace_enum
%inline %{
namespace Foo {
enum Swig {
LAGER,
STOUT,
ALE
};
class Bar {
public:
enum Speed {
SLOW,
FAST
};
};
}
%}