File indexing completed on 2025-07-06 13:16:16
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-07-06 13:16:16
0001 #include <QtCore/QObject> 0002 0003 struct MyObj : public QObject {}; 0004 0005 void testQObjectCast(QObject *o) 0006 { 0007 dynamic_cast<MyObj*>(o); // OK 0008 }