123456789101112131415161718192021222324 |
- #ifndef DOGCORE_H
- #define DOGCORE_H
- #include <QObject>
- #include <QTimer>
- #include <QDateTime>
- class DogCore : public QObject
- {
- Q_OBJECT
- public:
- explicit DogCore(QObject *parent = nullptr);
- void start();
- signals:
- public slots:
- void time_out();
- private:
- QTimer *timer;
- };
- #endif // DOGCORE_H
|