summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/btdeviceitem.h
Side-by-side diff
Diffstat (limited to 'noncore/net/opietooth/manager/btdeviceitem.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/btdeviceitem.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/btdeviceitem.h b/noncore/net/opietooth/manager/btdeviceitem.h
new file mode 100644
index 0000000..ae51483
--- a/dev/null
+++ b/noncore/net/opietooth/manager/btdeviceitem.h
@@ -0,0 +1,26 @@
+
+#ifndef OPIE_TOOTH_BT_DEVIVE_ITEM
+#define OPIE_TOOTH_BT_DEVIVE_ITEM
+
+
+#include <remotedevice.h>
+#include "btlistitem.h"
+
+namespace OpieTooth {
+ class BTDeviceItem : public BTListItem {
+ public:
+ BTDeviceItem( QListView* parent, const RemoteDevice& dev );
+ ~BTDeviceItem();
+ RemoteDevice remoteDevice() const;
+ QString type()const;
+ int typeId()const;
+ QString mac()const;
+ QString name() const;
+ private:
+ RemoteDevice m_device;
+ };
+
+};
+
+
+#endif