// Copyright 2017 The Chromium OS 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 SRC_INCLUDE_PUFFIN_STREAM_H_ #define SRC_INCLUDE_PUFFIN_STREAM_H_ #include <memory> #include "puffin/common.h" namespace puffin { // The base stream interface used by Puffin for all operations. This interface // is designed to be as simple as possible. class StreamInterface { … }; UniqueStreamPtr; } // namespace puffin #endif // SRC_INCLUDE_PUFFIN_STREAM_H_