/tags/ttn-post-libtool-1-4-3-upgrade/SWIG/Examples/test-suite/cpp_enum_scope.i
# · Swig · 17 lines · 12 code · 5 blank · 0 comment · 0 complexity · 768dfe7e01dc297e8360e1ff25a55d21 MD5 · raw file
- %module cpp_enum_scope
- // This tests to make sure default arguments are handled correctly
- // when scoped.
- %inline %{
- enum flavor { BITTER, SWEET };
- class Foo {
- public:
- enum speed { FAST, SLOW };
- // Note: default values should be Foo::FAST and SWEET
- void blah(speed s = FAST, flavor f = SWEET) {};
- };
- %}