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.
tdevelop/languages/cpp/subclassing_template/subclass_qt4_template.h

30 lines
432 B

#ifndef $NEWFILENAMEUC$_H
#define $NEWFILENAMEUC$_H
#include <$TQTBASECLASS$>
#include "ui_$BASEFILENAME$.h"
class $NEWCLASS$ : public $TQTBASECLASS$, private Ui::$BASECLASS$
{
Q_OBJECT
public:
$NEWCLASS$(TQWidget* parent = 0, TQt::WFlags fl = 0 );
~$NEWCLASS$();
/*$PUBLIC_FUNCTIONS$*/
public slots:
/*$PUBLIC_SLOTS$*/
protected:
/*$PROTECTED_FUNCTIONS$*/
protected slots:
/*$PROTECTED_SLOTS$*/
};
#endif