dwww Home | Show directory contents | Find package

/* This test checks whether SWIG correctly parses the new delegating
   constructors.
*/
%module cpp11_delegating_constructors

%inline %{
class A {
public:
  int a;
  int b;
  int c;

  A() : A( 10 ) {}
  A(int aa) : A(aa, 20) {}
  A(int aa, int bb) : A(aa, bb, 30) {}
  A(int aa, int bb, int cc) { a=aa; b=bb; c=cc; }
};
%}

Generated by dwww version 1.15 on Tue Jul 2 00:39:32 CEST 2024.