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

#include <qlistview.h>

namespace OpieTooth {

    class BTListItem : public QListViewItem {
        Q_OBJECT

    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