beta3更新

This commit is contained in:
2020-07-03 11:53:47 +08:00
parent 58304f2c19
commit 68269577c0
14 changed files with 270 additions and 129 deletions

22
outputwindow.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef OUTPUTWINDOW_H
#define OUTPUTWINDOW_H
#include <QWidget>
namespace Ui {
class outputwindow;
}
class outputwindow : public QWidget
{
Q_OBJECT
public:
explicit outputwindow(QWidget *parent = nullptr);
~outputwindow();
void setoutput(QString);
private:
Ui::outputwindow *ui;
};
#endif // OUTPUTWINDOW_H