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