chromium/device/bluetooth/test/fake_local_gatt_service.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_SERVICE_H_
#define DEVICE_BLUETOOTH_TEST_FAKE_LOCAL_GATT_SERVICE_H_

#include "base/containers/flat_map.h"
#include "base/memory/weak_ptr.h"
#include "device/bluetooth/bluetooth_local_gatt_characteristic.h"
#include "device/bluetooth/bluetooth_local_gatt_service.h"
#include "device/bluetooth/public/cpp/bluetooth_uuid.h"
#include "device/bluetooth/test/fake_local_gatt_characteristic.h"

namespace bluetooth {

// Implements device::BluetoothLocalGattService to be used in testing.
// Not intended for direct use by clients.
class FakeLocalGattService : public device::BluetoothLocalGattService {};

}  // namespace bluetooth

#endif  // DEVICE_BLUETOOTH_TEST_FAKE_LOCAL_GATT_SERVICE_H_