aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/parseissuesdialog.h
blob: 2221e03c74033ae31d51bd738852b903cc3a6553 (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) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include <QDialog>

namespace ProjectExplorer {
namespace Internal {

class ParseIssuesDialog : public QDialog
{
    Q_OBJECT
public:
    ParseIssuesDialog(QWidget *parent = nullptr);
    ~ParseIssuesDialog() override;

private:
    void accept() override;

    class Private;
    Private * const d;
};

} // namespace Internal
} // namespace ProjectExplorer