summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/btdeviceitem.h
Unidiff
Diffstat (limited to 'noncore/net/opietooth/manager/btdeviceitem.h') (more/less context) (ignore 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 @@
1
2#ifndef OPIE_TOOTH_BT_DEVIVE_ITEM
3#define OPIE_TOOTH_BT_DEVIVE_ITEM
4
5
6#include <remotedevice.h>
7#include "btlistitem.h"
8
9namespace OpieTooth {
10 class BTDeviceItem : public BTListItem {
11 public:
12 BTDeviceItem( QListView* parent, const RemoteDevice& dev );
13 ~BTDeviceItem();
14 RemoteDevice remoteDevice() const;
15 QString type()const;
16 int typeId()const;
17 QString mac()const;
18 QString name() const;
19 private:
20 RemoteDevice m_device;
21 };
22
23};
24
25
26#endif