#ifndef LLVM_DEBUGINFO_CODEVIEW_DEBUGLINESSUBSECTION_H
#define LLVM_DEBUGINFO_CODEVIEW_DEBUGLINESSUBSECTION_H
#include "llvm/ADT/StringRef.h"
#include "llvm/DebugInfo/CodeView/CodeView.h"
#include "llvm/DebugInfo/CodeView/DebugSubsection.h"
#include "llvm/DebugInfo/CodeView/Line.h"
#include "llvm/Support/BinaryStreamArray.h"
#include "llvm/Support/BinaryStreamRef.h"
#include "llvm/Support/Endian.h"
#include "llvm/Support/Error.h"
#include <cstdint>
#include <vector>
namespace llvm {
class BinaryStreamReader;
class BinaryStreamWriter;
namespace codeview {
class DebugChecksumsSubsection;
class DebugStringTableSubsection;
struct LineFragmentHeader { … };
struct LineBlockFragmentHeader { … };
struct LineNumberEntry { … };
struct ColumnNumberEntry { … };
struct LineColumnEntry { … };
class LineColumnExtractor { … };
class DebugLinesSubsectionRef final : public DebugSubsectionRef { … };
class DebugLinesSubsection final : public DebugSubsection { … };
}
}
#endif