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

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