summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/btlistitem.h
Unidiff
Diffstat (limited to 'noncore/net/opietooth/manager/btlistitem.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/btlistitem.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/btlistitem.h b/noncore/net/opietooth/manager/btlistitem.h
index 92b3803..8963caa 100644
--- a/noncore/net/opietooth/manager/btlistitem.h
+++ b/noncore/net/opietooth/manager/btlistitem.h
@@ -7,16 +7,27 @@ namespace OpieTooth {
7 7
8 class BTListItem : public QListViewItem { 8 class BTListItem : public QListViewItem {
9 9
10 public: 10 public:
11 BTListItem( QListView * parent ); 11 BTListItem( QListView * parent );
12 BTListItem( QListViewItem * parent ); 12 BTListItem( QListViewItem * parent );
13 13
14 // name, and then mac and then servicetype 14 // name, and then mac and then servicetype
15 BTListItem( QListView * , QString, QString, QString ); 15 BTListItem( QListView * , QString, QString, QString );
16 BTListItem( QListViewItem * parent , QString, QString , QString ); 16 BTListItem( QListViewItem * parent , QString, QString , QString );
17 ~BTListItem(); 17 ~BTListItem();
18 18
19 void setMac( QString );
20 QString mac();
21 void setName( QString );
22 QString name();
23 void setType( QString );
24 QString type();
25 private:
26 QString m_name;
27 QString m_mac;
28 QString m_type;
29
19 }; 30 };
20}; 31};
21 32
22#endif 33#endif