summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/btlistitem.h
Side-by-side diff
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 {
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();
+ void setMac( QString );
+ QString mac();
+ void setName( QString );
+ QString name();
+ void setType( QString );
+ QString type();
+ private:
+ QString m_name;
+ QString m_mac;
+ QString m_type;
+
};
};
#endif