Ticket #4003: foo.h

File foo.h, 266 bytes (added by Christopher Bruns <cmbruns@…>, 13 years ago)

minimized example header file to be wrapped

Line 
1class Foo1 {};
2class Foo2 {
3public:
4 Foo1& operator~() {return foo1;}
5private:
6 Foo1 foo1;
7};
8class Foo3 {
9public:
10 Foo2& T() {return foo2;}
11private:
12 Foo2 foo2;
13};
14class Foo4 {
15public:
16 void bar(const Foo3& f) {foo3 = f;}
17private:
18 Foo3 foo3;
19};
20