checkperiodwidget.h 536 B

12345678910111213141516171819202122232425262728293031
  1. #ifndef CHECKPERIODWIDGET_H
  2. #define CHECKPERIODWIDGET_H
  3. #include <QWidget>
  4. #include "spdlog/spdlog.h"
  5. namespace Ui {
  6. class CheckPeriodWidget;
  7. }
  8. class CheckPeriodWidget : public QWidget
  9. {
  10. Q_OBJECT
  11. public:
  12. explicit CheckPeriodWidget(QWidget *parent = nullptr);
  13. ~CheckPeriodWidget();
  14. private slots:
  15. void do_pBtn_addDetectPlan_clicked();
  16. void do_pBtn_addNoDetectPlan_clicked();
  17. private:
  18. Ui::CheckPeriodWidget *ui;
  19. std::shared_ptr<spdlog::logger> m_logger = nullptr;
  20. };
  21. #endif // CHECKPERIODWIDGET_H