blob: 94ae5e83f4ffaa7797175967e1d745fffc141301 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef __WAMAIN_H
#define __WAMAIN_H
#include "waWidget.h"
class WaMain : WaWidget {
Q_OBJECT
TQ_OBJECT
public:
WaMain();
~WaMain();
protected:
void paintEvent(TQPaintEvent *);
};
#endif
|