summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/btserviceitem.h
Unidiff
Diffstat (limited to 'noncore/net/opietooth/manager/btserviceitem.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/btserviceitem.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/btserviceitem.h b/noncore/net/opietooth/manager/btserviceitem.h
new file mode 100644
index 0000000..6dbd8f1
--- a/dev/null
+++ b/noncore/net/opietooth/manager/btserviceitem.h
@@ -0,0 +1,26 @@
1
2
3#ifndef OPIE_TOOTH_BT_SERVICE_ITEM
4#define OPIE_TOOTH_BT_SERVICE_ITEM
5
6#include <services.h>
7
8#include "btlistitem.h"
9
10namespace OpieTooth {
11
12 class BTServiceItem : public BTListItem {
13 public:
14 BTServiceItem( QListViewItem* item, const Services& );
15 ~BTServiceItem();
16 QString type() const;
17 int typeId() const;
18 Services services() const;
19 private:
20 Services m_service;
21
22 };
23};
24
25
26#endif