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.
25 lines
465 B
25 lines
465 B
|
|
#ifndef %{APPNAMEUC}_H
|
|
#define %{APPNAMEUC}_H
|
|
#include "ui_%{APPNAMELC}base.h"
|
|
|
|
class %{APPNAME}Base : public QWidget, public Ui_%{APPNAME}Base
|
|
{
|
|
public:
|
|
%{APPNAME}Base( QWidget *parent = 0, Qt::WFlags f = 0 );
|
|
virtual ~%{APPNAME}Base();
|
|
};
|
|
|
|
class %{APPNAME} : public %{APPNAME}Base
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
%{APPNAME}( QWidget *parent = 0, Qt::WFlags f = 0 );
|
|
virtual ~%{APPNAME}();
|
|
|
|
private slots:
|
|
void goodBye();
|
|
};
|
|
|
|
#endif // %{APPNAMEUC}_H
|