//===- FileWriter.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 LLVM_DEBUGINFO_GSYM_FILEWRITER_H #define LLVM_DEBUGINFO_GSYM_FILEWRITER_H #include "llvm/ADT/ArrayRef.h" #include "llvm/Support/Endian.h" #include <stddef.h> #include <stdint.h> #include <sys/types.h> namespace llvm { class raw_pwrite_stream; namespace gsym { /// A simplified binary data writer class that doesn't require targets, target /// definitions, architectures, or require any other optional compile time /// libraries to be enabled via the build process. This class needs the ability /// to seek to different spots in the binary stream that is produces to fixup /// offsets and sizes. class FileWriter { … }; } // namespace gsym } // namespace llvm #endif // LLVM_DEBUGINFO_GSYM_FILEWRITER_H