openauto/include/btservice/btservice.hpp
Robert Stanley Judka 23c38158ee
cleanup wireless device connection (#14)
* initial cleanup passthrough

* bad copypaste

* add back ! and more style fixes

* handling ping and voice session
2020-08-28 17:36:43 -05:00

28 lines
573 B
C++

#pragma once
#include <QBluetoothAddress>
#include "OpenautoLog.hpp"
#include "btservice/AndroidBluetoothService.hpp"
#include "btservice/AndroidBluetoothServer.hpp"
#include "openauto/Configuration/Configuration.hpp"
namespace openauto
{
namespace btservice
{
class btservice
{
public:
btservice(openauto::configuration::IConfiguration::Pointer config);
private:
const uint16_t cServicePortNumber = 22;
openauto::btservice::AndroidBluetoothService androidBluetoothService_;
openauto::btservice::AndroidBluetoothServer androidBluetoothServer_;
};
}
}