/tags/rel-1-3-26/SWIG/Examples/chicken/overload/example.h
# · C++ Header · 14 lines · 11 code · 2 blank · 1 comment · 0 complexity · 6ba046fd7100da3d6d6cc767b0811f7e MD5 · raw file
- /* File : example.h */
- extern void foo (int x);
- extern void foo (char *x);
- class Foo {
- private:
- int myvar;
- public:
- Foo();
- Foo(const Foo &); // Copy constructor
- void bar(int x);
- void bar(char *s, int y);
- };