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

#include <qlistview.h>

namespace OpieTooth {

    class BTListItem : public QListViewItem {

    public:
        BTListItem( QListView * parent  );
        BTListItem( QListViewItem * parent );

        // name, and then mac and then servicetype
        BTListItem( QListView * ,  QString, QString, QString  );
        BTListItem( QListViewItem * parent , QString, QString , QString );
        ~BTListItem();

    };
};

#endif