Finish implementation with proxy functions

This commit is contained in:
Artem Serebriyskiy 2014-04-15 03:38:45 +04:00
commit 7c8405368e
4 changed files with 285 additions and 2 deletions

View file

@ -30,6 +30,19 @@ class Foo {
}
int (Foo::*func_ptr)(int);
const char* __str__() const { return "Foo"; }
};
class FooSub : public Foo {
public:
FooSub() :Foo(42) {}
};
class FooSubSub : public FooSub {
public:
FooSubSub() : FooSub() {}
const char* __str__() const { return "FooSubSub"; }
};
%}