doxygen comments
[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 /**
15  * \brief About Tab widget.
16  */
17 class AboutTab: public QWidget {
18         Q_OBJECT
19         QVBoxLayout *mainLayout;
20         QLabel *label;
21 public:
22         AboutTab(QWidget *parent = 0);
23         ~AboutTab();
24 private:
25         void init();
26 };
27
28 #endif