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:
parent
2ab8daf295
commit
0749cef9e3
5 changed files with 119 additions and 0 deletions
13
Examples/ocaml/shapes/example.h
Normal file
13
Examples/ocaml/shapes/example.h
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue