Added overloading example.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4487 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Art Yerkes 2003-03-10 04:09:14 +00:00
commit 0749cef9e3
5 changed files with 119 additions and 0 deletions

View file

@ -0,0 +1,13 @@
#ifndef EXAMPLE_H
#define EXAMPLE_H
class shape {
public:
shape();
virtual ~shape();
virtual bool cover( double x, double y ); // does this shape cover this point?
};
extern void draw_shape_coverage( shape *s, int div_x, int div_y );
#endif//EXAMPLE_H