source: projectionDesigner/trunk/projdesigner/include/gui/QClientWindow.h @ 434

Last change on this file since 434 was 4, checked in by Torben Dannhauer, 14 years ago
File size: 459 bytes
Line 
1#ifndef _QCLIENTWINDOW_H_
2#define _QCLIENTWINDOW_H_
3
4#include <QtGui>
5
6#include "ui_qclientwindow.h"
7
8namespace projection
9{
10
11class QClientWindow : public QMainWindow
12{
13    Q_OBJECT
14
15public:
16
17    QClientWindow(QWidget* pParent=0, Qt::WFlags flags=0);
18    ~QClientWindow();
19
20    void appendLog(const QString& line);
21
22private slots:
23
24    void on_actionFileExit_triggered();
25
26private:
27
28    Ui::QClientWindow ui;
29};
30
31}; // projection
32
33#endif // _QCLIENTWINDOW_H_
Note: See TracBrowser for help on using the repository browser.