NCL Composer  0.1.5
 All Classes Functions Variables Pages
ProjectTreeItem.h
1 /* Copyright (c) 2011 Telemidia/PUC-Rio.
2  * All rights reserved. This program and the accompanying materials
3  * are made available under the terms of the Eclipse Public License v1.0
4  * which accompanies this distribution, and is available at
5  * http://www.eclipse.org/legal/epl-v10.html
6  *
7  * Contributors:
8  * Telemidia/PUC-Rio - initial API and implementation
9  */
10 #ifndef PROJECTTREEITEMWIDGET_H
11 #define PROJECTTREEITEMWIDGET_H
12 
13 #include <QTreeWidgetItem>
14 
18 class ProjectTreeItem : public QTreeWidgetItem
19 {
20 public:
21  ProjectTreeItem(QString name, QString location, QTreeWidget *parent = 0);
22  enum { ProjectType = QTreeWidgetItem::UserType+1 };
23 private:
24  QString _name;
25  QString _location;
26 };
27 
28 #endif // PROJECTTREEITEMWIDGET_H