dogcore.h 316 B

123456789101112131415161718192021222324
  1. #ifndef DOGCORE_H
  2. #define DOGCORE_H
  3. #include <QObject>
  4. #include <QTimer>
  5. #include <QDateTime>
  6. class DogCore : public QObject
  7. {
  8. Q_OBJECT
  9. public:
  10. explicit DogCore(QObject *parent = nullptr);
  11. void start();
  12. signals:
  13. public slots:
  14. void time_out();
  15. private:
  16. QTimer *timer;
  17. };
  18. #endif // DOGCORE_H