summaryrefslogtreecommitdiff
path: root/resourceqt-client/time-stat.h
diff options
context:
space:
mode:
authorWolf Bergenheim <ext-wolf.2.bergenheim@nokia.com>2010-08-23 12:15:15 +0300
committerWolf Bergenheim <ext-wolf.2.bergenheim@nokia.com>2010-09-06 14:36:28 +0300
commit0bcbc969c7dfa362cfffad3f92d375329fee289f (patch)
tree7f1897a8e359091b112cacaea0c8fd4fbf3a4c5f /resourceqt-client/time-stat.h
parenta83adabf1dd858d3dab0cc141fc51fdcb9388d44 (diff)
* Moved CommandLineParser to its own files
* Removed broken timer, replaced it with a simpler timer made in C * Sanitized the use of resources (Use Qt types instead of custom bitmap) * Added a MessageHandler so we can later play with verbosity level
Diffstat (limited to 'resourceqt-client/time-stat.h')
-rw-r--r--resourceqt-client/time-stat.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/resourceqt-client/time-stat.h b/resourceqt-client/time-stat.h
new file mode 100644
index 0000000..0bd5eaf
--- /dev/null
+++ b/resourceqt-client/time-stat.h
@@ -0,0 +1,16 @@
+#ifndef TIME_STAT_H
+#define TIME_STAT_H
+#include <time.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+int start_timer(void);
+
+double stop_timer(void);
+#ifdef __cplusplus
+}
+#endif
+
+#endif
+