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:
parent
b19d0dc05e
commit
a71a80a975
2 changed files with 0 additions and 3 deletions
|
|
@ -2,8 +2,6 @@
|
|||
#include <stdio.h>
|
||||
#include "example.h"
|
||||
|
||||
shape::shape() { }
|
||||
|
||||
shape::~shape() { }
|
||||
|
||||
bool shape::cover( double x, double y ) { return false; }
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@
|
|||
|
||||
class shape {
|
||||
public:
|
||||
shape();
|
||||
virtual ~shape();
|
||||
virtual bool cover( double x, double y ); // does this shape cover this point?
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue