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