blob: 5f8cd0ee781defc182182f243d3136a9835d843a (
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 slots:
    void setAmount();
private:
    TQDialog *p;
};
 |