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

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