summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/btserviceitem.h
Side-by-side diff
Diffstat (limited to 'noncore/net/opietooth/manager/btserviceitem.h') (more/less context) (ignore 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 @@
+
+
+#ifndef OPIE_TOOTH_BT_SERVICE_ITEM
+#define OPIE_TOOTH_BT_SERVICE_ITEM
+
+#include <services.h>
+
+#include "btlistitem.h"
+
+namespace OpieTooth {
+
+ class BTServiceItem : public BTListItem {
+ public:
+ BTServiceItem( QListViewItem* item, const Services& );
+ ~BTServiceItem();
+ QString type() const;
+ int typeId() const;
+ Services services() const;
+ private:
+ Services m_service;
+
+ };
+};
+
+
+#endif