summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/btdeviceitem.h
blob: e4c6ce7a76f78149941cb3b5641e12b094b8be6e (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

#ifndef OPIE_TOOTH_BT_DEVICE_ITEM
#define OPIE_TOOTH_BT_DEVICE_ITEM


#include <remotedevice.h>
#include "btlistitem.h"

namespace OpieTooth {
    class BTDeviceItem : public BTListItem {
    public:
        BTDeviceItem( QListView* parent, const RemoteDevice& dev );
        ~BTDeviceItem();
        RemoteDevice remoteDevice() const;
        QString type()const;
        int typeId()const;
        QString mac()const;
        QString name() const;
    private:
        RemoteDevice m_device;
    };

};


#endif