utils.h 263 B

123456789101112131415161718
  1. #ifndef __UTILS_H__
  2. #define __UTILS_H__
  3. #include <QObject>
  4. class Utils : public QObject
  5. {
  6. Q_OBJECT
  7. public:
  8. explicit Utils(QObject *parent = nullptr);
  9. static QString timestamp();
  10. static qint64 currentNanoTimestamp();
  11. };
  12. #endif // UTILS_H