aboutsummaryrefslogtreecommitdiff
path: root/client/esp/timetest.h
diff options
context:
space:
mode:
authorNielsCoding <n.stunnebrink@student.avans.nl>2022-10-10 18:30:19 +0200
committerNielsCoding <n.stunnebrink@student.avans.nl>2022-10-10 18:30:19 +0200
commit2cdbf0173600183f1fb14fdd0e01f00e8b09f308 (patch)
treeb1f4ace8a0fd769056377710b63006bef69a8c6a /client/esp/timetest.h
parent1000c8fd861b046a72bb3957dcc04cd6b28ceede (diff)
esp code voor qt
Diffstat (limited to 'client/esp/timetest.h')
-rw-r--r--client/esp/timetest.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/client/esp/timetest.h b/client/esp/timetest.h
new file mode 100644
index 0000000..aa1d8a5
--- /dev/null
+++ b/client/esp/timetest.h
@@ -0,0 +1,27 @@
+#ifndef TIMETEST_H
+#define TIMETEST_H
+#include <QTimer>
+#include <QDebug>
+#include <QObject>
+#include <QDateTime>
+
+class TimeTest : public QObject
+{
+ Q_OBJECT
+public:
+ explicit TimeTest(QObject *parent = 0);
+
+signals:
+public slots:
+ qint16 myfunction();
+
+private:
+ QTimer *timer;
+
+
+
+
+};
+
+
+#endif // TIMETEST_H