// SPDX-License-Identifier: GPL-3.0-or-later /* * Qt mutizone MQTT thermostat * * Copyright (C) 2020 Richard Genoud * */ #ifndef HOLIDAYDLG_H #define HOLIDAYDLG_H #include #include #include class HolidayDlg : public QWidget { Q_OBJECT public: HolidayDlg(QWidget *parent = Q_NULLPTR, Qt::WindowFlags f = Qt::WindowFlags()); ~HolidayDlg(); }; #endif // HOLIDAYDLG_H /* vim: set tabstop=8 shiftwidth=8 softtabstop=0 noexpandtab: */