// Copyright 2014 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_BLUETOOTH_GATT_SERVICE_H_ #define DEVICE_BLUETOOTH_BLUETOOTH_GATT_SERVICE_H_ #include <string> #include "base/functional/callback_forward.h" #include "device/bluetooth/bluetooth_export.h" #include "device/bluetooth/public/cpp/bluetooth_uuid.h" namespace device { // BluetoothGattService represents a local or remote GATT service. A GATT // service is hosted by a peripheral and represents a collection of data in // the form of GATT characteristics and a set of included GATT services if this // service is what is called "a primary service". class DEVICE_BLUETOOTH_EXPORT BluetoothGattService { … }; } // namespace device #endif // DEVICE_BLUETOOTH_BLUETOOTH_GATT_SERVICE_H_