SourceModule.h 769 B

123456789101112131415161718192021222324252627
  1. //===-- SourceModule.h ------------------------------------------*- C++ -*-===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. #ifndef LLDB_SYMBOL_SOURCEMODULE_H
  9. #define LLDB_SYMBOL_SOURCEMODULE_H
  10. #include "lldb/Utility/ConstString.h"
  11. #include <vector>
  12. namespace lldb_private {
  13. /// Information needed to import a source-language module.
  14. struct SourceModule {
  15. /// Something like "Module.Submodule".
  16. std::vector<ConstString> path;
  17. ConstString search_path;
  18. ConstString sysroot;
  19. };
  20. } // namespace lldb_private
  21. #endif