blob: 6704a20b44ddba2e1ab2aee8706dc791f5396d63 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "device/bluetooth/test/fake_read_response.h"
namespace bluetooth {
FakeReadResponse::FakeReadResponse(
uint16_t gatt_code,
const base::Optional<std::vector<uint8_t>>& value)
: gatt_code_(gatt_code), value_(value) {}
FakeReadResponse::~FakeReadResponse() = default;
} // namespace bluetooth