Sophie

Sophie

distrib > Mandriva > 9.1 > ppc > by-pkgid > 58f5a40828161dc688bc640be9c7bd55 > files > 822

swig-1.3.11-4mdk.ppc.rpm

%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) {};
};

%}