configurator/lib/ServiceWidget.h

18 lines
268 B
C
Raw Normal View History

2024-09-03 13:40:08 +00:00
#pragma once
#include <QWidget>
#include <QBoxLayout>
#include <QLabel>
#include "Service.h"
class ServiceWidget:public QWidget {
Q_OBJECT
public:
ServiceWidget(Service &s, QWidget *parent=0);
protected:
QBoxLayout _layout;
QLabel * _icon;
QLabel * _label;
};