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.
29 lines
408 B
29 lines
408 B
|
|
#ifndef $NEWFILENAMEUC$_H
|
|
#define $NEWFILENAMEUC$_H
|
|
|
|
#include "$BASEFILENAME$.h"
|
|
|
|
class $NEWCLASS$ : public $BASECLASS$
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
$NEWCLASS$(TQWidget* parent = 0, const char* name = 0$CAN_BE_MODAL_H$, WFlags fl = 0 );
|
|
~$NEWCLASS$();
|
|
/*$PUBLIC_FUNCTIONS$*/
|
|
|
|
public slots:
|
|
/*$PUBLIC_SLOTS$*/
|
|
|
|
protected:
|
|
/*$PROTECTED_FUNCTIONS$*/
|
|
|
|
protected slots:
|
|
/*$PROTECTED_SLOTS$*/
|
|
|
|
};
|
|
|
|
#endif
|