summaryrefslogtreecommitdiffstats
path: root/tools/designer/examples/credit/creditform.h
blob: ffcec1432ed58efdbc285e6c2e094e45d00565f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "creditformbase.h"

class CreditForm : public CreditFormBase
{
    Q_OBJECT
public:
    CreditForm( QWidget* parent = 0, const char* name = 0, 
		bool modal = FALSE, WFlags fl = 0 );
    ~CreditForm();
public slots:
    void setAmount();
};