~ubuntu-branches/ubuntu/vivid/kdesdk/vivid

« back to all changes in this revision

Viewing changes to kspy/navviewitem.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-06-06 11:49:54 UTC
  • mfrom: (0.4.21)
  • Revision ID: package-import@ubuntu.com-20120606114954-rdls73fzlpzxglbx
Tags: 4:4.8.80-0ubuntu1
* New uptream beta release
* Update dont_export_private_classes.diff

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
                          navviewitem.h  -  description
3
 
                             -------------------
4
 
    begin                : Tue May 1 2001
5
 
    copyright            : (C) 2001 by Richard Moore
6
 
    email                : rich@kde.org
7
 
 ***************************************************************************/
8
 
 
9
 
/***************************************************************************
10
 
 *                                                                         *
11
 
 *   This program is free software; you can redistribute it and/or modify  *
12
 
 *   it under the terms of the GNU General Public License as published by  *
13
 
 *   the Free Software Foundation; either version 2 of the License, or     *
14
 
 *   (at your option) any later version.                                   *
15
 
 *                                                                         *
16
 
 ***************************************************************************/
17
 
 
18
 
#ifndef NAVVIEWITEM_H
19
 
#define NAVVIEWITEM_H
20
 
 
21
 
#include <QTreeWidgetItem>
22
 
 
23
 
class NavView;
24
 
 
25
 
/**
26
 
  *@author Richard Moore
27
 
  */
28
 
 
29
 
class NavViewItem : public QTreeWidgetItem  {
30
 
public:
31
 
  NavViewItem(NavView *parent, QObject *item );
32
 
  NavViewItem(NavViewItem *parent, QObject *item );
33
 
  ~NavViewItem();
34
 
 
35
 
  QObject *data;
36
 
private:
37
 
  void init(QObject *obj);
38
 
};
39
 
 
40
 
#endif