Bitcoin Core 22.99.0
P2P Digital Currency
openuridialog.h
Go to the documentation of this file.
1// Copyright (c) 2011-2020 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#ifndef BITCOIN_QT_OPENURIDIALOG_H
6#define BITCOIN_QT_OPENURIDIALOG_H
7
8#include <QDialog>
9
10namespace Ui {
11 class OpenURIDialog;
12}
13
14class OpenURIDialog : public QDialog
15{
16 Q_OBJECT
17
18public:
19 explicit OpenURIDialog(QWidget *parent);
21
22 QString getURI();
23
24protected Q_SLOTS:
25 void accept() override;
26
27private:
29};
30
31#endif // BITCOIN_QT_OPENURIDIALOG_H
void accept() override
Ui::OpenURIDialog * ui
Definition: openuridialog.h:28
QString getURI()
OpenURIDialog(QWidget *parent)