source: qutecom-coip/gui/src/contacts/grouptreewidget.h @ 283:312974380d4f

Last change on this file since 283:312974380d4f was 283:312974380d4f, checked in by laurent <laurent@…>, 23 months ago

update gui

File size: 353 bytes
Line 
1#ifndef GROUPTREEWIDGET_H
2#define GROUPTREEWIDGET_H
3
4#include <QtGui>
5
6class GroupTreeWidget : public QTreeWidgetItem {
7 
8private:
9    std::string _groupId;
10   
11public:
12    explicit GroupTreeWidget(std::string groupId,QTreeWidget *parent);
13    ~GroupTreeWidget();
14   
15    QVariant data ( int column, int role ) const;
16};
17
18#endif // GROUPTREEWIDGET_H
Note: See TracBrowser for help on using the repository browser.