//===-- SupportFile.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_SUPPORTFILE_H #define LLDB_UTILITY_SUPPORTFILE_H #include "lldb/Utility/Checksum.h" #include "lldb/Utility/FileSpec.h" namespace lldb_private { /// Wraps a FileSpec and an optional Checksum. The FileSpec represents either a /// path to a file or a source file whose contents is known (for example because /// it can be reconstructed from debug info), but that hasn't been written to a /// file yet. class SupportFile { … }; } // namespace lldb_private #endif // LLDB_UTILITY_SUPPORTFILE_H