| Line | Source | Count |
| 1 | | - |
| 2 | | - |
| 3 | | - |
| 4 | class QQmlProfilerEventReceiver : public QObject | - |
| 5 | { | - |
| 6 | public: | - |
| 7 | #pragma GCC diagnostic push | - |
| 8 | | - |
| 9 | #pragma GCC diagnostic ignored "-Wsuggest-override" | - |
| 10 | static const QMetaObject staticMetaObject; virtual const QMetaObject *metaObject() const; virtual void *qt_metacast(const char *); virtual int qt_metacall(QMetaObject::Call, int, void **); static inline QString tr(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } __attribute__ ((__deprecated__)) static inline QString trUtf8(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } private: | - |
| 11 | #pragma GCC diagnostic ignored "-Wattributes" | - |
| 12 | __attribute__((visibility("hidden"))) static void qt_static_metacall(QObject *, QMetaObject::Call, int, void **); | - |
| 13 | #pragma GCC diagnostic pop | - |
| 14 | struct QPrivateSignal {}; | - |
| 15 | public: | - |
| 16 | QQmlProfilerEventReceiver(QObject *parent = nullptr) : QObject(parent) {}executed 36 times by 1 test: end of block | 36 |
| 17 | | - |
| 18 | virtual int numLoadedEventTypes() const = 0; | - |
| 19 | virtual void addEventType(const QQmlProfilerEventType &type) = 0; | - |
| 20 | virtual void addEvent(const QQmlProfilerEvent &event) = 0; | - |
| 21 | }; | - |
| 22 | | - |
| 23 | | - |
| | |