| 123456789101112131415161718 |
- #ifndef __UTILS_H__
- #define __UTILS_H__
- #include <QObject>
- class Utils : public QObject
- {
- Q_OBJECT
- public:
- explicit Utils(QObject *parent = nullptr);
-
- static QString timestamp();
- static qint64 currentNanoTimestamp();
- };
- #endif // UTILS_H
|