17 lines
342 B
C++
17 lines
342 B
C++
#ifndef DDMOTORTESTDCWIDGET_H
|
|
#define DDMOTORTESTDCWIDGET_H
|
|
#include<QDockWidget>
|
|
#include "dd_motor_test.h"
|
|
|
|
class dd_motor_test_dc_widget:public QDockWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
dd_motor_test_dc_widget(const QString& title,QWidget* parent = nullptr);
|
|
dd_motor_test_widget * pdd_motor_test_widget;
|
|
};
|
|
|
|
|
|
|
|
#endif // CAMERADCWIDGET_H
|