summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/btlistitem.h
blob: 6b529d1658c6846ebc5f0cecf0d24b5ba738e073 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef BTLISTITEM_H
#define BTLISTITEM_H

#include <qlistview.h>

namespace OpieTooth {

    class BTListItem : public QListViewItem {
    public:
        enum Types { Device =0, Service, Connection };
        BTListItem( QListView * parent  );
        BTListItem( QListViewItem * parent );
        virtual QString type() const = 0;
        virtual int typeId() const = 0;
    };
};

#endif