You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qt3/tools/designer/examples/credit/creditform.h

13 lines
250 B

#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();
};