summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/btlistitem.cpp
Unidiff
Diffstat (limited to 'noncore/net/opietooth/manager/btlistitem.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/btlistitem.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/btlistitem.cpp b/noncore/net/opietooth/manager/btlistitem.cpp
new file mode 100644
index 0000000..4901710
--- a/dev/null
+++ b/noncore/net/opietooth/manager/btlistitem.cpp
@@ -0,0 +1,30 @@
1
2#include "btlistitem.h"
3
4namespace OpieTooth {
5
6
7 BTListItem::BTListItem( QListView * parent ) : QListViewItem( parent ) {
8
9 }
10
11 BTListItem::BTListItem( QListViewItem * parent ) : QListViewItem( parent ) {
12
13 }
14
15
16 // name, and then mac and then servicetype
17 BTListItem::BTListItem( QListView * parent, QString name , QString mac, QString type )
18 : QListViewItem( parent, name, mac, type ){
19
20 }
21
22 BTListItem::BTListItem( QListViewItem * parent , QString name, QString mac, QString type )
23 : QListViewItem( parent, name, mac, type ){
24
25 }
26
27 BTListItem::~BTListItem() {
28 }
29
30}