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