| 1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. |
|---|---|
| 2 | // |
| 3 | // SPDX-License-Identifier: GPL-3.0-or-later |
| 4 | |
| 5 | #include "commonparser.h" |
| 6 | |
| 7 | CommonParser::CommonParser() |
| 8 | { |
| 9 | setObjectName(QLatin1String("CommonParser")); |
| 10 | } |
| 11 | |
| 12 | void CommonParser::stdOutput(const QString &line, OutputPane::OutputFormat format) |
| 13 | { |
| 14 | IOutputParser::stdOutput(line, format); |
| 15 | } |
| 16 | |
| 17 | void CommonParser::stdError(const QString &line) |
| 18 | { |
| 19 | IOutputParser::stdError(line); |
| 20 | } |
| 21 | |
| 22 |