]> Git Repo - VerusCoin.git/blob - src/qt/openuridialog.h
Merge pull request #4804 from jtimon/chainparams3
[VerusCoin.git] / src / qt / openuridialog.h
1 // Copyright (c) 2011-2013 The Bitcoin developers
2 // Distributed under the MIT/X11 software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5 #ifndef OPENURIDIALOG_H
6 #define OPENURIDIALOG_H
7
8 #include <QDialog>
9
10 namespace Ui {
11     class OpenURIDialog;
12 }
13
14 class OpenURIDialog : public QDialog
15 {
16     Q_OBJECT
17
18 public:
19     explicit OpenURIDialog(QWidget *parent);
20     ~OpenURIDialog();
21
22     QString getURI();
23
24 protected slots:
25     void accept();
26
27 private slots:
28     void on_selectFileButton_clicked();
29
30 private:
31     Ui::OpenURIDialog *ui;
32 };
33
34 #endif // OPENURIDIALOG_H
This page took 0.021788 seconds and 4 git commands to generate.