blob: e04f143555c6f0c18761840608e515b990e2b6c4 [file] [log] [blame]
// Copyright 2019 The Fuchsia 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 "write_queue.h"
namespace bt::att {
QueuedWrite::QueuedWrite(Handle handle, uint16_t offset, const ByteBuffer& value)
: handle_(handle), offset_(offset), value_(value) {}
} // namespace bt::att