Changed the class name "Object" to "AbstractBaseClass" in the

abstract_typedef.i example, since there is a built-in class
named Object for Ruby.


git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4466 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Logan Johnson 2003-03-07 18:28:44 +00:00
commit ac52b20aed

View file

@ -6,13 +6,13 @@
{
};
struct Object
struct AbstractBaseClass
{
virtual bool write(Engine& archive) const = 0;
};
typedef Engine PersEngine;
typedef Object PersClassBase;
typedef AbstractBaseClass PersClassBase;
class A : public PersClassBase