qnetdice

diff src/dicedialog.cc @ 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.cc	Thu Dec 19 13:34:40 2013 +0200
     1.3 @@ -0,0 +1,14 @@
     1.4 +#include "dicedialog.h"
     1.5 +#include "ui_dicedialog.h"
     1.6 +
     1.7 +DiceDialog::DiceDialog(QWidget *parent) :
     1.8 +    QDialog(parent),
     1.9 +    ui(new Ui::DiceDialog)
    1.10 +{
    1.11 +    ui->setupUi(this);
    1.12 +}
    1.13 +
    1.14 +DiceDialog::~DiceDialog()
    1.15 +{
    1.16 +    delete ui;
    1.17 +}