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

29 lines
426 B

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