Added license for instructions dialog
[speedfreak] / Client / instructionsdialog.h
1 /*
2  * Instructions dialog for speedFreak project
3  *
4  * @author      Rikhard Kuutti  <rikhard.kuutti@fudeco.com>
5  * @copyright   (c) 2010 Speed Freak team
6  * @license     http://opensource.org/licenses/gpl-license.php GNU Public License
7  */
8
9 #ifndef INSTRUCTIONSDIALOG_H
10 #define INSTRUCTIONSDIALOG_H
11
12 #include <QDialog>
13
14 namespace Ui {
15     class InstructionsDialog;
16 }
17
18 class InstructionsDialog : public QDialog {
19     Q_OBJECT
20 public:
21     InstructionsDialog(QWidget *parent = 0);
22     ~InstructionsDialog();
23
24 protected:
25     void changeEvent(QEvent *e);
26
27 private:
28     Ui::InstructionsDialog *ui;
29 };
30
31 #endif // INSTRUCTIONSDIALOG_H