diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-10-11 19:21:52 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-10-11 19:21:52 +0200 |
commit | fbb6a5a1570666ad283afac6e545c578e65475b8 (patch) | |
tree | 5efe464ac2c41ae9c932043451606bf2b3036db7 /client/timetest.h | |
parent | b455848ee62b06ba73801cff477c6ff214c4053e (diff) |
client merge done
Diffstat (limited to 'client/timetest.h')
-rw-r--r-- | client/timetest.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/client/timetest.h b/client/timetest.h new file mode 100644 index 0000000..aa1d8a5 --- /dev/null +++ b/client/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 |