chromium/device/bluetooth/floss/bluetooth_remote_gatt_service_floss.cc

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "device/bluetooth/floss/bluetooth_remote_gatt_service_floss.h"

#include "base/memory/ptr_util.h"
#include "base/strings/stringprintf.h"
#include "device/bluetooth/floss/bluetooth_device_floss.h"
#include "device/bluetooth/floss/bluetooth_remote_gatt_characteristic_floss.h"

namespace floss {

// static
std::unique_ptr<BluetoothRemoteGattServiceFloss>
BluetoothRemoteGattServiceFloss::Create(BluetoothAdapterFloss* adapter,
                                        BluetoothDeviceFloss* device,
                                        GattService remote_service) {}

BluetoothRemoteGattServiceFloss::BluetoothRemoteGattServiceFloss(
    BluetoothAdapterFloss* adapter,
    BluetoothDeviceFloss* device,
    GattService remote_service)
    :{}

BluetoothRemoteGattServiceFloss::~BluetoothRemoteGattServiceFloss() {}

std::string BluetoothRemoteGattServiceFloss::GetIdentifier() const {}

device::BluetoothUUID BluetoothRemoteGattServiceFloss::GetUUID() const {}

device::BluetoothDevice* BluetoothRemoteGattServiceFloss::GetDevice() const {}

bool BluetoothRemoteGattServiceFloss::IsPrimary() const {}

std::vector<device::BluetoothRemoteGattService*>
BluetoothRemoteGattServiceFloss::GetIncludedServices() const {}

}  // namespace floss