llvm/lldb/include/lldb/Utility/DataBufferLLVM.h

//===--- DataBufferLLVM.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_UTILITY_DATABUFFERLLVM_H
#define LLDB_UTILITY_DATABUFFERLLVM_H

#include "lldb/Utility/DataBuffer.h"
#include "lldb/lldb-types.h"

#include <cstdint>
#include <memory>

namespace llvm {
class WritableMemoryBuffer;
class MemoryBuffer;
class Twine;
} // namespace llvm

namespace lldb_private {
class FileSystem;

class DataBufferLLVM : public DataBuffer {};

class WritableDataBufferLLVM : public WritableDataBuffer {};
} // namespace lldb_private

#endif