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.
28 lines
404 B
28 lines
404 B
15 years ago
|
|
||
|
#ifndef $NEWFILENAMEUC$_H
|
||
|
#define $NEWFILENAMEUC$_H
|
||
|
|
||
|
#include "$BASEFILENAME$.h"
|
||
|
|
||
|
class $NEWCLASS$ : public $BASECLASS$
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
$NEWCLASS$(QWidget* 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
|