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.

29 lines
426 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 BACKGROUNDLOOP_H
  9. #define BACKGROUNDLOOP_H
  10. #include <QThread>
  11. class BackgroundLoop : public QThread
  12. {
  13. Q_OBJECT
  14. public:
  15. BackgroundLoop();
  16. ~BackgroundLoop();
  17. private:
  18. void run() override;
  19. };
  20. #endif // BACKGROUNDLOOP_H
  21. /* vim: set tabstop=8 shiftwidth=8 softtabstop=0 noexpandtab: */