summaryrefslogtreecommitdiffstats
path: root/languages/cpp/subclassing_template/subclass_template.h
blob: 1451e471c2927780ac6de7efb976b957c7043a16 (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

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

#include "$BASEFILENAME$.h"

class $NEWCLASS$ : public $BASECLASS$
{
  Q_OBJECT
  TQ_OBJECT

public:
  $NEWCLASS$(TQWidget* parent = 0, const char* name = 0$CAN_BE_MODAL_H$, WFlags fl = 0 );
  ~$NEWCLASS$();
  /*$PUBLIC_FUNCTIONS$*/

public slots:
  /*$PUBLIC_SLOTS$*/

protected:
  /*$PROTECTED_FUNCTIONS$*/

protected slots:
  /*$PROTECTED_SLOTS$*/

};

#endif