summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/btlistitem.cpp
Side-by-side diff
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 @@
+
+#include "btlistitem.h"
+
+namespace OpieTooth {
+
+
+ BTListItem::BTListItem( QListView * parent ) : QListViewItem( parent ) {
+
+ }
+
+ BTListItem::BTListItem( QListViewItem * parent ) : QListViewItem( parent ) {
+
+ }
+
+
+ // name, and then mac and then servicetype
+ BTListItem::BTListItem( QListView * parent, QString name , QString mac, QString type )
+ : QListViewItem( parent, name, mac, type ){
+
+ }
+
+ BTListItem::BTListItem( QListViewItem * parent , QString name, QString mac, QString type )
+ : QListViewItem( parent, name, mac, type ){
+
+ }
+
+ BTListItem::~BTListItem() {
+ }
+
+}