summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/parseissuesdialog.h
blob: 175a1e05c3b6fb260fa19c296cbd290becf4df49 (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-only 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