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


#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;
        int serviceId() const;
    private:
        Services m_service;

    };
};


#endif