#ifndef DEVICE_BLUETOOTH_GATT_SERVICE_H_
#define DEVICE_BLUETOOTH_GATT_SERVICE_H_
#include "device/bluetooth/bluetooth_local_gatt_service.h"
#include "device/bluetooth/public/mojom/adapter.mojom.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "mojo/public/cpp/bindings/remote.h"
namespace device {
class BluetoothLocalGattService;
class BluetoothLocalGattCharacteristic;
class BluetoothAdapter;
}
namespace bluetooth {
class GattService : public mojom::GattService,
public device::BluetoothLocalGattService::Delegate { … };
}
#endif