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

« back to all changes in this revision

Viewing changes to languages/cpp/app_templates/kbearplugin/outputwidget.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2006-05-23 18:39:42 UTC
  • Revision ID: james.westby@ubuntu.com-20060523183942-hucifbvh68k2bwz7
Tags: upstream-3.3.2
Import upstream version 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
%{CPP_TEMPLATE}
 
2
 
 
3
//////////////////////////////////////////////////////////////////////
 
4
// KDE specific include files
 
5
#include <kdebug.h>
 
6
//////////////////////////////////////////////////////////////////////
 
7
// Application specific include files
 
8
#include "kbear%{APPNAMELC}outputwidget.h"
 
9
 
 
10
 
 
11
KBear%{APPNAME}OutputWidget::KBear%{APPNAME}OutputWidget(QWidget* parent, const char* name )
 
12
    : QWidget( parent, name )
 
13
{
 
14
}
 
15
 
 
16
KBear%{APPNAME}OutputWidget::~KBear%{APPNAME}OutputWidget() {
 
17
}
 
18
 
 
19
 
 
20
#include "kbear%{APPNAMELC}outputwidget.moc"
 
21