qnetdice

diff src/dicedialog.h @ 0:0e9c16d77e47

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 19 Dec 2013 13:34:40 +0200
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/dicedialog.h	Thu Dec 19 13:34:40 2013 +0200
     1.3 @@ -0,0 +1,22 @@
     1.4 +#ifndef DICEDIALOG_H
     1.5 +#define DICEDIALOG_H
     1.6 +
     1.7 +#include <QDialog>
     1.8 +
     1.9 +namespace Ui {
    1.10 +class DiceDialog;
    1.11 +}
    1.12 +
    1.13 +class DiceDialog : public QDialog
    1.14 +{
    1.15 +    Q_OBJECT
    1.16 +
    1.17 +public:
    1.18 +    explicit DiceDialog(QWidget *parent = 0);
    1.19 +    ~DiceDialog();
    1.20 +
    1.21 +private:
    1.22 +    Ui::DiceDialog *ui;
    1.23 +};
    1.24 +
    1.25 +#endif // DICEDIALOG_H