Line | |
---|
1 | /****************************************************************
|
---|
2 | **
|
---|
3 | ** Definition of MainWindow class, translation tutorial 3
|
---|
4 | **
|
---|
5 | ****************************************************************/
|
---|
6 |
|
---|
7 | #ifndef MAINWINDOW_H
|
---|
8 | #define MAINWINDOW_H
|
---|
9 |
|
---|
10 | #include <qmainwindow.h>
|
---|
11 |
|
---|
12 | class MainWindow : public QMainWindow
|
---|
13 | {
|
---|
14 | Q_OBJECT
|
---|
15 | public:
|
---|
16 | MainWindow( QWidget *parent = 0, const char *name = 0 );
|
---|
17 |
|
---|
18 | private slots:
|
---|
19 | void about();
|
---|
20 | void aboutQt();
|
---|
21 | };
|
---|
22 |
|
---|
23 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.