aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/mercurial/revertdialog.h
blob: 0c58b01f5d7e389cf91e862d18f8c94b9a24a70d (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
27
28
// Copyright (C) 2016 Brian McGillion
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include "ui_revertdialog.h"

#include <QDialog>

namespace Mercurial {
namespace Internal {

class RevertDialog : public QDialog
{
    Q_OBJECT

public:
    RevertDialog(QWidget *parent = nullptr);
    ~RevertDialog() override;

    QString revision() const;

private:
    Ui::RevertDialog *m_ui;
};

} // namespace Internal
} // namespace Mercurial