summaryrefslogtreecommitdiff
path: root/rockworkd/libpebble/jskit/jskitperformance.h
blob: 5f118be6459b9c1c2ac378cc5ac0637990711894 (plain)
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