20 lines
390 B
C++
20 lines
390 B
C++
#ifndef DEVICESYSTEMINFODCWIDGET_H
|
|
#define DEVICESYSTEMINFODCWIDGET_H
|
|
|
|
#include <QDockWidget>
|
|
#include "devicesysteminfowidget.h"
|
|
|
|
|
|
class DeviceSystemInfoDCWidget: public QDockWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DeviceSystemInfoDCWidget(const QString& title,QWidget* parent = nullptr);
|
|
protected:
|
|
DeviceSystemInfoWidget* deviceSystemInfoWidget;
|
|
|
|
};
|
|
|
|
#endif // DEVICESYSTEMINFODCWIDGET_H
|