// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "util/big_endian.h" namespace openscreen { BigEndianReader::BigEndianReader(const uint8_t* buffer, size_t length) : … { … } bool BigEndianReader::Read(size_t length, void* out) { … } BigEndianWriter::BigEndianWriter(uint8_t* buffer, size_t length) : … { … } bool BigEndianWriter::Write(const void* buffer, size_t length) { … } } // namespace openscreen