chromium/device/bluetooth/test/fake_local_gatt_characteristic.h

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef DEVICE_BLUETOOTH_TEST_FAKE_LOCAL_GATT_CHARACTERISTIC_H_
#define DEVICE_BLUETOOTH_TEST_FAKE_LOCAL_GATT_CHARACTERISTIC_H_

#include "device/bluetooth/bluetooth_local_gatt_characteristic.h"
#include "device/bluetooth/public/cpp/bluetooth_uuid.h"

namespace device {
class BluetoothLocalGattService;
}  // namespace device

namespace bluetooth {

// Implements device::BluetoothLocalGattCharacteristics. Meant to be used
// by FakeLocalGattService to keep track of the characteristic's state and
// attributes. Not intended for direct use by clients.
class FakeLocalGattCharacteristic
    : public device::BluetoothLocalGattCharacteristic {};

}  // namespace bluetooth

#endif  // DEVICE_BLUETOOTH_TEST_FAKE_LOCAL_GATT_CHARACTERISTIC_H_