blob: 5d0867f5af837b5596e643812f0d8356a06b6f35 (
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 *tqparent );
public Q_SLOTS:
void setAmount();
private:
TQDialog *p;
};
|