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

« back to all changes in this revision

Viewing changes to languages/cpp/app_templates/kdevpart2/kdevpart_widget.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
#include "%{APPNAMELC}widget.h"
 
3
 
 
4
#include <kurl.h>
 
5
#include <klibloader.h>
 
6
#include <kparts/part.h>
 
7
 
 
8
#include <kdevcore.h>
 
9
 
 
10
#include "%{APPNAMELC}part.h"
 
11
 
 
12
%{APPNAME}Widget::%{APPNAME}Widget(%{APPNAME}Part *part)
 
13
    : QWidget(0, "%{APPNAMELC} widget"), m_part(part)
 
14
{
 
15
}
 
16
 
 
17
%{APPNAME}Widget::~%{APPNAME}Widget()
 
18
{
 
19
}
 
20
 
 
21
#include "%{APPNAMELC}widget.moc"