Sophie

Sophie

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

swig-1.3.11-4mdk.i586.rpm

/* Swig 1.3.6 fails to understand the "explicit" keyword.
   SF Bug #445233, reported by Krzysztof Kozminski
   <kozminski@users.sf.net>. 
*/

%module test

%inline %{

class A {
  public:
    explicit A(int) {};
};

%}