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.
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
/*
|
|
* Qt mutizone MQTT thermostat
|
|
*
|
|
* Copyright (C) 2020 Richard Genoud
|
|
*
|
|
*/
|
|
|
|
#ifndef HOLIDAYDLG_H
|
|
#define HOLIDAYDLG_H
|
|
|
|
#include <QWidget>
|
|
#include <QObject>
|
|
#include <QPushButton>
|
|
|
|
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: */
|
|
|