File indexing completed on 2025-07-13 05:07:28

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