Files
newspark110/device/ui/devicecontrolpaneldcwidget.h
Chenwenxuan edac2715f0 init
2024-03-06 14:54:30 +08:00

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