summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/btlistitem.cpp
blob: 4901710785a9fc12d8b1c641317e796e9d7850d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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() {
    }

}