summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/btserviceitem.h
blob: 6dbd8f1e097f3b0dd3776444e645c74bafdef795 (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_SERVICE_ITEM
#define OPIE_TOOTH_BT_SERVICE_ITEM

#include <services.h>

#include "btlistitem.h"

namespace OpieTooth {

    class BTServiceItem : public BTListItem {
    public:
        BTServiceItem( QListViewItem* item, const Services& );
        ~BTServiceItem();
        QString type() const;
        int typeId() const;
        Services services() const;
    private:
        Services m_service;

    };
};


#endif