Thermostat pour piloter jusqu'à 4 radiateurs avec fil pilote
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
482 B

  1. // SPDX-License-Identifier: GPL-3.0-or-later
  2. /*
  3. * Qt mutizone MQTT thermostat
  4. *
  5. * Copyright (C) 2020 Richard Genoud
  6. *
  7. */
  8. #ifndef HOLIDAYDLG_H
  9. #define HOLIDAYDLG_H
  10. #include <QWidget>
  11. #include <QObject>
  12. #include <QPushButton>
  13. class HolidayDlg : public QWidget
  14. {
  15. Q_OBJECT
  16. public:
  17. HolidayDlg(QWidget *parent = Q_NULLPTR,
  18. Qt::WindowFlags f = Qt::WindowFlags());
  19. ~HolidayDlg();
  20. };
  21. #endif // HOLIDAYDLG_H
  22. /* vim: set tabstop=8 shiftwidth=8 softtabstop=0 noexpandtab: */