|
#pragma once
|
|
|
|
#include <QMainWindow>
|
|
#include "ui_QtEchoExportWindows.h"
|
|
|
|
class QtEchoExportWindows : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QtEchoExportWindows(QWidget *parent = nullptr);
|
|
~QtEchoExportWindows();
|
|
|
|
private:
|
|
Ui::QtEchoExportWindowsClass ui;
|
|
};
|