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
425 B
29 lines
425 B
15 years ago
|
|
||
|
#ifndef $NEWFILENAMEUC$_H
|
||
|
#define $NEWFILENAMEUC$_H
|
||
|
|
||
|
#include <$QTBASECLASS$>
|
||
|
#include "ui_$BASEFILENAME$.h"
|
||
|
|
||
|
class $NEWCLASS$ : public $QTBASECLASS$, private Ui::$BASECLASS$
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
$NEWCLASS$(QWidget* parent = 0, Qt::WFlags fl = 0 );
|
||
|
~$NEWCLASS$();
|
||
|
/*$PUBLIC_FUNCTIONS$*/
|
||
|
|
||
|
public slots:
|
||
|
/*$PUBLIC_SLOTS$*/
|
||
|
|
||
|
protected:
|
||
|
/*$PROTECTED_FUNCTIONS$*/
|
||
|
|
||
|
protected slots:
|
||
|
/*$PROTECTED_SLOTS$*/
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|