summaryrefslogtreecommitdiffstats
path: root/languages/cpp/subclassing_template/subclass_qt4_template.h
blob: 64ba390e8bf1c5b8315ffe8669c306351cb738df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

#ifndef $NEWFILENAMEUC$_H
#define $NEWFILENAMEUC$_H

#include <$TQTBASECLASS$>
#include "ui_$BASEFILENAME$.h"

class $NEWCLASS$ : public $TQTBASECLASS$, private Ui::$BASECLASS$
{
  Q_OBJECT
  TQ_OBJECT

public:
  $NEWCLASS$(TQWidget* tqparent = 0, TQt::WFlags fl = 0 );
  ~$NEWCLASS$();
  /*$PUBLIC_FUNCTIONS$*/

public slots:
  /*$PUBLIC_SLOTS$*/

protected:
  /*$PROTECTED_FUNCTIONS$*/

protected slots:
  /*$PROTECTED_SLOTS$*/

};

#endif