]> Shamusworld >> Repos - virtualjaguar/blob - src/gui/about.h
854ebc88f5073ddaaa43be2a3e8194ce5f29b20b
[virtualjaguar] / src / gui / about.h
1 //
2 // about.h: Credits where credits are due ;-)
3 //
4 // by James L. Hammons
5 // (C) 2010 Underground Software
6 //
7
8 #ifndef __ABOUT_H__
9 #define __ABOUT_H__
10
11 #include <QtGui>
12
13 class AboutWindow: public QWidget
14 {
15         public:
16                 AboutWindow(QWidget * parent = 0);
17
18         private:
19                 QVBoxLayout * layout;
20                 QLabel * text;
21                 QLabel * image;
22 };
23
24 #endif  // __ABOUT_H__