chromium/third_party/ots/src/include/ots-memory-stream.h

// Copyright (c) 2009-2017 The OTS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef OTS_MEMORY_STREAM_H_
#define OTS_MEMORY_STREAM_H_

#include <cstring>
#include <limits>

#include "opentype-sanitiser.h"

namespace ots {

class MemoryStream : public OTSStream {};

class ExpandingMemoryStream : public OTSStream {};

}  // namespace ots

#endif  // OTS_MEMORY_STREAM_H_