Developer documentation | Axl-2.5.1

axlInspectorObjectManagerTreeItem.cpp
Go to the documentation of this file.
1 /* axlInspectorObjectManagerTreeItem.cpp ---
2  *
3  * Author: Julien Wintz
4  * Copyright (C) 2008 - Julien Wintz, Inria.
5  * Created: Mon Mar 14 18:25:24 2011 (+0100)
6  * Version: $Id$
7  * Last-Updated: Mon Mar 14 18:25:57 2011 (+0100)
8  * By: Julien Wintz
9  * Update #: 3
10  */
11 
12 /* Commentary:
13  *
14  */
15 
16 /* Change log:
17  *
18  */
19 
21 #include <QtDebug>
22 
23 class axlInspectorObjectManagerTreeItemPrivate
24 {
25 public:
26 };
27 
28 axlInspectorObjectManagerTreeItem::axlInspectorObjectManagerTreeItem(QTreeWidgetItem *parent) : QTreeWidgetItem(parent), d(new axlInspectorObjectManagerTreeItemPrivate)
29 {
30 
31 }
32 
33 axlInspectorObjectManagerTreeItem::axlInspectorObjectManagerTreeItem(QTreeWidget *parent, const QStringList& strings,int type) : QTreeWidgetItem(parent, strings, type), d(new axlInspectorObjectManagerTreeItemPrivate)
34 {
35 
36 }
37 
39 {
40  delete d;
41  d = NULL;
42 }
axlInspectorObjectManagerTreeItem(QTreeWidgetItem *parent=0)