variable name changes to remove php keywords
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10575 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
09638387dd
commit
f8ae12fe4d
12 changed files with 19 additions and 19 deletions
|
|
@ -10,11 +10,11 @@
|
|||
virtual ~Node() {}
|
||||
};
|
||||
|
||||
class Switch : public Node {
|
||||
class NodeSwitch : public Node {
|
||||
public :
|
||||
virtual int addChild( Node *child ) { return 2; } // This was hidden with -fvirtual
|
||||
virtual int addChild( Node *child, bool value ) { return 3; }
|
||||
virtual ~Switch() {}
|
||||
virtual ~NodeSwitch() {}
|
||||
};
|
||||
%}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue