llvm/lldb/include/lldb/Utility/StreamBuffer.h

//===-- StreamBuffer.h ------------------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#ifndef LLDB_CORE_STREAMBUFFER_H
#define LLDB_CORE_STREAMBUFFER_H

#include "lldb/Utility/Stream.h"
#include "llvm/ADT/SmallVector.h"
#include <cstdio>
#include <string>

namespace lldb_private {

template <unsigned N> class StreamBuffer : public Stream {};

} // namespace lldb_private

#endif // LLDB_CORE_STREAMBUFFER_H