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.

32 lines
519 B

  1. // SPDX-License-Identifier: GPL-3.0-or-later
  2. /*
  3. * Qt mutizone MQTT thermostat
  4. *
  5. * Copyright (C) 2019 Richard Genoud
  6. *
  7. */
  8. #ifndef MAINWINDOW_H
  9. #define MAINWINDOW_H
  10. #include <QMainWindow>
  11. #include <QPushButton>
  12. #include <QtWidgets>
  13. #include "backgroundloop.h"
  14. class MainWindow : public QMainWindow
  15. {
  16. Q_OBJECT
  17. public:
  18. explicit MainWindow(QWidget *parent = NULL);
  19. ~MainWindow();
  20. private:
  21. BackgroundLoop m_backLoop;
  22. };
  23. #endif // MAINWINDOW_H
  24. /* vim: set tabstop=8 shiftwidth=8 softtabstop=0 noexpandtab: */