#ifndef LLVM_TOOLS_DSYMUTIL_LINKOPTIONS_H
#define LLVM_TOOLS_DSYMUTIL_LINKOPTIONS_H
#include "llvm/ADT/Twine.h"
#include "llvm/Remarks/RemarkFormat.h"
#include "llvm/Support/VirtualFileSystem.h"
#include "llvm/Support/WithColor.h"
#include "llvm/DWARFLinker/Classic/DWARFLinker.h"
#include "llvm/DWARFLinker/Classic/DWARFStreamer.h"
#include <string>
namespace llvm {
namespace dsymutil {
enum class DsymutilAccelTableKind : uint8_t { … };
enum class DsymutilDWARFLinkerType : uint8_t { … };
struct LinkOptions { … };
inline void warn(Twine Warning, Twine Context = { … }
inline bool error(Twine Error, Twine Context = { … }
}
}
#endif