19 lines
405 B
C++
19 lines
405 B
C++
#ifndef DEVICECONTROLPANELDCWIDGET_H
|
|
#define DEVICECONTROLPANELDCWIDGET_H
|
|
#include "devicecontrolpanelwidget.h"
|
|
#include <QDockWidget>
|
|
|
|
|
|
class DeviceControlPanelDCWidget: public QDockWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DeviceControlPanelDCWidget(const QString& title,QWidget* parent = nullptr);
|
|
protected:
|
|
DeviceControlPanelWidget* deviceControlPanelWidget;
|
|
|
|
};
|
|
|
|
#endif // DEVICECONTROLPANELDCWIDGET_H
|