File indexing completed on 2025-12-21 05:44:36
0001 #include <QtCore/QObject> 0002 0003 struct MyObj : public QObject {}; 0004 0005 void testQObjectCast(QObject *o) 0006 { 0007 dynamic_cast<MyObj*>(o); // OK 0008 }
File indexing completed on 2025-12-21 05:44:36
0001 #include <QtCore/QObject> 0002 0003 struct MyObj : public QObject {}; 0004 0005 void testQObjectCast(QObject *o) 0006 { 0007 dynamic_cast<MyObj*>(o); // OK 0008 }