blob: 601e913436b8c71c62b3cfaf80704233c89da45c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Copyright (C) Filippo Cucchetto <filippocucchetto@gmail.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <projectexplorer/ioutputparser.h>
namespace Nim {
class NimParser : public ProjectExplorer::OutputTaskParser
{
Result handleLine(const QString &line, Utils::OutputFormat) override;
};
#ifdef WITH_TESTS
class NimParserTest final : public QObject
{
Q_OBJECT
private slots:
void testNimParser_data();
void testNimParser();
};
#endif
} // Nim
|