Revision: 1270
http://pygccxml.svn.sourceforge.net/pygccxml/?rev=1270&view=rev
Author: roman_yakovenko
Date: 2008-03-03 12:21:22 -0800 (Mon, 03 Mar 2008)
Log Message:
-----------
adding one more use case - private inheritance
Modified Paths:
--------------
pyplusplus_dev/unittests/data/override_bug_to_be_exported.hpp
Modified: pyplusplus_dev/unittests/data/override_bug_to_be_exported.hpp
===================================================================
--- pyplusplus_dev/unittests/data/override_bug_to_be_exported.hpp 2008-03-02 19:13:11 UTC (rev 1269)
+++ pyplusplus_dev/unittests/data/override_bug_to_be_exported.hpp 2008-03-03 20:21:22 UTC (rev 1270)
@@ -82,6 +82,11 @@
virtual int do_smth() {};
};
+class ZZ : private YY{
+public:
+ void do_nothing() {}
+};
+
}
#endif//__final_classes_to_be_exported_hpp__
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|