~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to languages/cpp/subclassing_template/subclass_qt4_template.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2010-05-05 07:21:55 UTC
  • mfrom: (1.2.3 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100505072155-h78lx19pu04sbhtn
Tags: 4:4.0.0-2
* Upload to unstable (Closes: #579947, #481832).
* Acknowledge obsolete NMU fixes (Closes: #562410, #546961).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
#ifndef $NEWFILENAMEUC$_H
3
 
#define $NEWFILENAMEUC$_H
4
 
 
5
 
#include <$QTBASECLASS$>
6
 
#include "ui_$BASEFILENAME$.h"
7
 
 
8
 
class $NEWCLASS$ : public $QTBASECLASS$, private Ui::$BASECLASS$
9
 
{
10
 
  Q_OBJECT
11
 
 
12
 
public:
13
 
  $NEWCLASS$(QWidget* parent = 0, Qt::WFlags fl = 0 );
14
 
  ~$NEWCLASS$();
15
 
  /*$PUBLIC_FUNCTIONS$*/
16
 
 
17
 
public slots:
18
 
  /*$PUBLIC_SLOTS$*/
19
 
 
20
 
protected:
21
 
  /*$PROTECTED_FUNCTIONS$*/
22
 
 
23
 
protected slots:
24
 
  /*$PROTECTED_SLOTS$*/
25
 
 
26
 
};
27
 
 
28
 
#endif