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.
|
#include "creditformbase.h"
|
|
|
|
class CreditForm : public CreditFormBase
|
|
{
|
|
TQ_OBJECT
|
|
public:
|
|
CreditForm( TQWidget* parent = 0, const char* name = 0,
|
|
bool modal = FALSE, WFlags fl = 0 );
|
|
~CreditForm();
|
|
public slots:
|
|
void setAmount();
|
|
};
|