| 1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. |
|---|---|
| 2 | // |
| 3 | // SPDX-License-Identifier: GPL-3.0-or-later |
| 4 | |
| 5 | #ifndef COMMONPARSER_H |
| 6 | #define COMMONPARSER_H |
| 7 | |
| 8 | #include "services/builder/ioutputparser.h" |
| 9 | |
| 10 | class CommonParser : public IOutputParser |
| 11 | { |
| 12 | Q_OBJECT |
| 13 | public: |
| 14 | CommonParser(); |
| 15 | void stdOutput(const QString &line, OutputPane::OutputFormat format) override; |
| 16 | void stdError(const QString &line) override; |
| 17 | }; |
| 18 | |
| 19 | #endif // ANSIFILTERPARSER_H |
| 20 |