forked from ccsens_hardware/qt_qcp_show
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
283 B
22 lines
283 B
#ifndef MAINWIDGET_H
|
|
#define MAINWIDGET_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class MainWidget;
|
|
}
|
|
|
|
class MainWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MainWidget(QWidget *parent = 0);
|
|
~MainWidget();
|
|
|
|
private:
|
|
Ui::MainWidget *ui;
|
|
};
|
|
|
|
#endif // MAINWIDGET_H
|
|
|