blob: 31572c2ca3661b8a72030ef51ae71c47f1463ee2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <tqobject.h>
#include <tqdialog.h>
class Receiver : public TQObject
{
TQ_OBJECT
public:
void setParent( TQDialog *parent );
public Q_SLOTS:
void setAmount();
private:
TQDialog *p;
};
|