summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/btlistitem.h
Side-by-side diff
Diffstat (limited to 'noncore/net/opietooth/manager/btlistitem.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/btlistitem.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/btlistitem.h b/noncore/net/opietooth/manager/btlistitem.h
new file mode 100644
index 0000000..28612b0
--- a/dev/null
+++ b/noncore/net/opietooth/manager/btlistitem.h
@@ -0,0 +1,24 @@
+#ifndef BTLISTITEM_H
+#define BTLISTITEM_H
+
+#include <qlistview.h>
+
+namespace OpieTooth {
+
+ class BTListItem : public QListViewItem {
+ Q_OBJECT
+
+ public:
+
+ BTListItem( QListView * parent );
+ BTListItem( QListViewItem * parent );
+
+ // name, and then mac and then servicetype
+ BTListItem( QListView * , QString, QString, QString );
+ BTListItem( QListViewItem * parent , QString, QString , QString );
+ ~BTListItem();
+
+ }
+}
+
+#endif