summaryrefslogtreecommitdiff
path: root/rockworkd/libpebble/jskit/jskitperformance.h
diff options
context:
space:
mode:
Diffstat (limited to 'rockworkd/libpebble/jskit/jskitperformance.h')
-rw-r--r--rockworkd/libpebble/jskit/jskitperformance.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/rockworkd/libpebble/jskit/jskitperformance.h b/rockworkd/libpebble/jskit/jskitperformance.h
new file mode 100644
index 0000000..5f118be
--- /dev/null
+++ b/rockworkd/libpebble/jskit/jskitperformance.h
@@ -0,0 +1,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