dwww Home | Show directory contents | Find package

%module smart_pointer_const2

%inline %{
struct Foo {
   int x;
   int getx() const { return x; }
   int test() { return x; }
};

class Bar {
   Foo *f;
public:
   Bar(Foo *f) : f(f) { }
   const Foo *operator->() {
      return f;
   }
};
%}


Generated by dwww version 1.15 on Tue Jul 2 00:48:31 CEST 2024.