summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/btconnectionitem.h
blob: 3c0cd793327f378e4c1fb369bb69ea4dfe28c04e (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_CONNECTION_ITEM_H
#define OPIE_TOOTH_BT_CONNECTION_ITEM_H


#include "btlistitem.h"

namespace OpieTooth {

    class ConnectionState;
    class BTConnectionItem : public BTListItem {
    public:
        BTConnectionItem( QListView* parent, const ConnectionState& state );
        ~BTConnectionItem();
        QString type()const;
        int typeId() const;
        ConnectionState connection()const;
    private:
        ConnectionState m_con;

    };

};


#endif