2017-10-24 11:07:24 +08:00
|
|
|
#ifndef QUSERBLUETOOTHPROTOCOL_H
|
|
|
|
#define QUSERBLUETOOTHPROTOCOL_H
|
|
|
|
|
|
|
|
#include <QObject>
|
2018-04-22 13:03:28 +08:00
|
|
|
#include "qqtbluetoothclient.h"
|
2017-10-24 11:07:24 +08:00
|
|
|
|
|
|
|
class QUserBluetoothProtocol : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2017-11-27 20:15:23 +08:00
|
|
|
explicit QUserBluetoothProtocol ( QObject* parent = nullptr );
|
2017-10-24 11:07:24 +08:00
|
|
|
|
|
|
|
signals:
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
};
|
|
|
|
|
2018-04-22 13:03:28 +08:00
|
|
|
QQtBluetoothClient* QQtUserBluetoothClientInstance ( QObject* parent = 0 );
|
2017-10-24 11:07:24 +08:00
|
|
|
|
|
|
|
#endif // QUSERBLUETOOTHPROTOCOL_H
|