mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-10-04 09:32:21 +08:00
23 lines
333 B
C++
23 lines
333 B
C++
#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
|