summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/bluetooth/bluetoothRFCOMMdata.h
blob: 14cfeb089dfd44aab75831472cbcd5c4bb8c460a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef BLUETOOTHRFCOMM_DATA_H
#define BLUETOOTHRFCOMM_DATA_H

#include <qstring.h>
#include <qvector.h>

class RFCOMMChannel {

public :
      QString BDAddress;
      QString Name;
      int     Channel;
}; 

class BluetoothRFCOMMData {

public :

      QVector<RFCOMMChannel> Devices;
}; 

#endif