aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/perforce/changenumberdialog.h
blob: 82aa83b43d21c269377f7beef244ad9b9a67c5cc (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
// Copyright (C) 2016 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>

#include "ui_changenumberdialog.h"

namespace Perforce {
namespace Internal {

// Input a change number for pending changes.
class ChangeNumberDialog : public QDialog
{
    Q_OBJECT
public:
    ChangeNumberDialog(QWidget *parent = nullptr);
    int number() const;

private:
    Ui::ChangeNumberDialog m_ui;

};

} // namespace Perforce
} // namespace Internal