Removed unneeded constructor for shape class.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6645 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Art Yerkes 2004-11-03 17:11:20 +00:00
commit a71a80a975
2 changed files with 0 additions and 3 deletions

View file

@ -2,8 +2,6 @@
#include <stdio.h>
#include "example.h"
shape::shape() { }
shape::~shape() { }
bool shape::cover( double x, double y ) { return false; }

View file

@ -3,7 +3,6 @@
class shape {
public:
shape();
virtual ~shape();
virtual bool cover( double x, double y ); // does this shape cover this point?
};