18 lines
396 B
C++
18 lines
396 B
C++
#ifndef DEVICESTATEUSERDCWIDGET_H
|
|
#define DEVICESTATEUSERDCWIDGET_H
|
|
#include "devicestateuserwidget.h"
|
|
#include <QDockWidget>
|
|
|
|
|
|
class DeviceStateUserDCWidget: public QDockWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
DeviceStateUserDCWidget(const QString& title,QWidget* parent = nullptr);
|
|
protected:
|
|
DeviceStateUserWidget* devicestateuserwidget;
|
|
};
|
|
|
|
#endif // DEVICESTATEUSERDCWIDGET_H
|
|
|