dwww Home | Show directory contents | Find package

%module smart_pointer_simple

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

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


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