17 lines
378 B
C++
17 lines
378 B
C++
#ifndef DEVICESTATEINFODCWIDGET_H
|
|
#define DEVICESTATEINFODCWIDGET_H
|
|
|
|
#include <QDockWidget>
|
|
#include "devicestateinfowidget.h"
|
|
|
|
class DeviceStateInfoDCWidget:public QDockWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
DeviceStateInfoDCWidget(const QString& title,QWidget* parent = nullptr);
|
|
protected:
|
|
DeviceStateInfoWidget* deviceStateInfoWidget;
|
|
};
|
|
|
|
#endif // DEVICESTATEINFODCWIDGET_H
|