better fix for typedef + inheritance

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8788 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2006-02-11 06:20:02 +00:00
commit a4e6310345

View file

@ -272,11 +272,12 @@ namespace TagLib
PropertiesFile(File * = 0) {}
};
class PropertiesFree {
public:
PropertiesFree(File *) {}
};
namespace bar {
class PropertiesFree : public AudioProperties {
public:
PropertiesFree(File *) {}
};
}
class FooFilePrivate : private PropertiesFile {
public: