// Copyright 2017 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_EMULATION_FAKE_READ_RESPONSE_H_ #define DEVICE_BLUETOOTH_EMULATION_FAKE_READ_RESPONSE_H_ #include <cstdint> #include <optional> #include <vector> namespace bluetooth { // Holds the necessary values for dispatching a fake read response. // // Not intended for direct use by clients. See README.md. class FakeReadResponse { … }; } // namespace bluetooth #endif // DEVICE_BLUETOOTH_EMULATION_FAKE_READ_RESPONSE_H_