This source file includes following definitions.
- Create
#include "device/bluetooth/bluetooth_gatt_characteristic.h"
#include "base/logging.h"
namespace device {
BluetoothGattCharacteristic::BluetoothGattCharacteristic() {
}
BluetoothGattCharacteristic::~BluetoothGattCharacteristic() {
}
BluetoothGattCharacteristic* BluetoothGattCharacteristic::Create(
const BluetoothUUID& uuid,
const std::vector<uint8>& value,
Properties properties,
Permissions permissions) {
LOG(ERROR) << "Creating local GATT characteristics currently not supported.";
return NULL;
}
}