fb2e7c7511c8dc8e29045c0ddbd1fa2892b653a0
[aspt.git] / abouttab.h
1 /*******************************************************************
2 Jan Cermak | johniez | aspt.johniez.com
3 Creative Commons 2.5 Attribution-NonCommercial-NoDerivs 2.5 license
4 http://creativecommons.org/licenses/by-nc-nd/2.5/legalcode
5 *******************************************************************/
6
7 #ifndef ABOUTTAB__H__
8 #define ABOUTTAB__H__
9
10 #include <QWidget>
11 #include <QVBoxLayout>
12 #include <QLabel>
13
14 class AboutTab: public QWidget {
15         Q_OBJECT
16         QVBoxLayout *mainLayout;
17         QLabel *label;
18 public:
19         AboutTab(QWidget *parent = 0);
20         ~AboutTab();
21 private:
22         void init();
23 };
24
25 #endif