24 lines
231 B
OpenEdge ABL
24 lines
231 B
OpenEdge ABL
%module namespace_enum
|
|
|
|
%inline %{
|
|
|
|
namespace Foo {
|
|
enum Swig {
|
|
LAGER,
|
|
STOUT,
|
|
ALE
|
|
};
|
|
|
|
class Bar {
|
|
public:
|
|
enum Speed {
|
|
SLOW,
|
|
FAST
|
|
};
|
|
};
|
|
}
|
|
|
|
%}
|
|
|
|
|
|
|