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

« back to all changes in this revision

Viewing changes to languages/cpp/app_templates/kdevpart2/kdevpart_widget.h

  • 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
%{H_TEMPLATE}
 
2
#ifndef %{APPNAMEUC}_WIDGET_H
 
3
#define %{APPNAMEUC}_WIDGET_H
 
4
 
 
5
#include <qwidget.h>
 
6
#include <qstring.h>
 
7
 
 
8
class KDevProject;
 
9
class %{APPNAME}Part;
 
10
 
 
11
class %{APPNAME}Widget: public QWidget
 
12
{
 
13
    Q_OBJECT
 
14
public:  
 
15
    %{APPNAME}Widget(%{APPNAME}Part *part);
 
16
    ~%{APPNAME}Widget();
 
17
 
 
18
private:
 
19
    %{APPNAME}Part *m_part;
 
20
};
 
21
 
 
22
 
 
23
#endif