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