Remove unreachable or otherwise redundant code
[bitcoinplatinum.git] / src / qt / openuridialog.h
blobe94593d5bb0388ee573a6fa98fcc3dc04e01e643
1 // Copyright (c) 2011-2015 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.
5 #ifndef BITCOIN_QT_OPENURIDIALOG_H
6 #define BITCOIN_QT_OPENURIDIALOG_H
8 #include <QDialog>
10 namespace Ui {
11 class OpenURIDialog;
14 class OpenURIDialog : public QDialog
16 Q_OBJECT
18 public:
19 explicit OpenURIDialog(QWidget *parent);
20 ~OpenURIDialog();
22 QString getURI();
24 protected Q_SLOTS:
25 void accept();
27 private Q_SLOTS:
28 void on_selectFileButton_clicked();
30 private:
31 Ui::OpenURIDialog *ui;
34 #endif // BITCOIN_QT_OPENURIDIALOG_H