// SPDX-License-Identifier: GPL-3.0-or-later /* * Qt mutizone MQTT thermostat * * Copyright (C) 2019 Richard Genoud * */ #ifndef BACKGROUNDLOOP_H #define BACKGROUNDLOOP_H #include class BackgroundLoop : public QThread { Q_OBJECT public: BackgroundLoop(); ~BackgroundLoop(); private: void run() override; }; #endif // BACKGROUNDLOOP_H /* vim: set tabstop=8 shiftwidth=8 softtabstop=0 noexpandtab: */