1// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.
2//
3// SPDX-License-Identifier: GPL-3.0-or-later
4
5#ifndef COMPILEOUTPUTPANE_H
6#define COMPILEOUTPUTPANE_H
7
8#include "common/widget/outputpane.h"
9
10class CompileOutputPane : public OutputPane
11{
12 Q_OBJECT
13public:
14 CompileOutputPane(QWidget *parent = nullptr);
15};
16
17#endif // COMPILEOUTPUTPANE_H
18