source: trunk/tools/linguist/tutorial/tt3/mainwindow.h

Last change on this file was 193, checked in by rudi, 14 years ago

Qt Linguist added

File size: 476 bytes
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
12class MainWindow : public QMainWindow
13{
14 Q_OBJECT
15public:
16 MainWindow( QWidget *parent = 0, const char *name = 0 );
17
18private slots:
19 void about();
20 void aboutQt();
21};
22
23#endif
Note: See TracBrowser for help on using the repository browser.