summaryrefslogtreecommitdiffstats
path: root/tools/designer/examples/receiver2/receiver.h
blob: aa17de83b26d9ffe846c74e305fc06d3b9ee430a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <qobject.h>
#include <qdialog.h>

class Receiver : public TQObject
{
    Q_OBJECT
public:
    void setParent( TQDialog *parent );
public slots:
    void setAmount();
private:
    TQDialog *p;
};