Sophie

Sophie

distrib > Mandriva > 9.1 > i586 > by-pkgid > 3c88344d1f3d15057277d028d0022277 > files > 822

swig-1.3.11-4mdk.i586.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) {};
};

%}