]> Git Repo - VerusCoin.git/blame - src/qt/aboutdialog.h
qt: add license header to source files
[VerusCoin.git] / src / qt / aboutdialog.h
CommitLineData
e592d43f
WL
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
1355cfe1
WL
5#ifndef ABOUTDIALOG_H
6#define ABOUTDIALOG_H
7
8#include <QDialog>
9
3a7abc2c
WL
10namespace Ui {
11 class AboutDialog;
12}
0052fe7b 13class ClientModel;
3a7abc2c 14
af836ad5 15/** "About" dialog box */
1355cfe1
WL
16class AboutDialog : public QDialog
17{
18 Q_OBJECT
3a7abc2c 19
1355cfe1
WL
20public:
21 explicit AboutDialog(QWidget *parent = 0);
3a7abc2c 22 ~AboutDialog();
1355cfe1 23
0052fe7b 24 void setModel(ClientModel *model);
8823b4ac 25
3a7abc2c
WL
26private:
27 Ui::AboutDialog *ui;
1355cfe1 28
3a7abc2c
WL
29private slots:
30 void on_buttonBox_accepted();
1355cfe1
WL
31};
32
33#endif // ABOUTDIALOG_H
This page took 0.103532 seconds and 4 git commands to generate.