1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef JSKITPERFORMANCE_H #define JSKITPERFORMANCE_H #include <QObject> #include <QTime> class JSKitPerformance : public QObject { Q_OBJECT public: explicit JSKitPerformance(QObject *parent=0); Q_INVOKABLE int now(); private: QTime m_start; }; #endif // JSKITPERFORMANCE_H