swig/Examples/ocaml/shapes/example.h
Art Yerkes 0749cef9e3 Added overloading example.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4487 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2003-03-10 04:09:14 +00:00

13 lines
261 B
C++

#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