summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/btconnectionitem.h
Side-by-side diff
Diffstat (limited to 'noncore/net/opietooth/manager/btconnectionitem.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/btconnectionitem.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/btconnectionitem.h b/noncore/net/opietooth/manager/btconnectionitem.h
new file mode 100644
index 0000000..3c0cd79
--- a/dev/null
+++ b/noncore/net/opietooth/manager/btconnectionitem.h
@@ -0,0 +1,26 @@
+
+#ifndef OPIE_TOOTH_BT_CONNECTION_ITEM_H
+#define OPIE_TOOTH_BT_CONNECTION_ITEM_H
+
+
+#include "btlistitem.h"
+
+namespace OpieTooth {
+
+ class ConnectionState;
+ class BTConnectionItem : public BTListItem {
+ public:
+ BTConnectionItem( QListView* parent, const ConnectionState& state );
+ ~BTConnectionItem();
+ QString type()const;
+ int typeId() const;
+ ConnectionState connection()const;
+ private:
+ ConnectionState m_con;
+
+ };
+
+};
+
+
+#endif