* initial cleanup passthrough * bad copypaste * add back ! and more style fixes * handling ping and voice session
28 lines
573 B
C++
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_;
|
|
};
|
|
|
|
}
|
|
}
|