File indexing completed on 2024-05-05 05:41:40

0001 #include <QtCore/QObject>
0002 
0003 struct MyObj : public QObject {};
0004 
0005 void testQObjectCast(QObject *o)
0006 {
0007     dynamic_cast<MyObj*>(o); // OK
0008 }