1351290Sdim//===-- SourceModule.h ------------------------------------------*- C++ -*-===//
2351290Sdim//
3351290Sdim// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4351290Sdim// See https://llvm.org/LICENSE.txt for license information.
5351290Sdim// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6351290Sdim//
7351290Sdim//===----------------------------------------------------------------------===//
8351290Sdim
9351290Sdim#ifndef liblldb_SourceModule_h_
10351290Sdim#define liblldb_SourceModule_h_
11351290Sdim
12351290Sdim#include "lldb/Utility/ConstString.h"
13351290Sdim#include <vector>
14351290Sdim
15351290Sdimnamespace lldb_private {
16351290Sdim
17351290Sdim/// Information needed to import a source-language module.
18351290Sdimstruct SourceModule {
19351290Sdim  /// Something like "Module.Submodule".
20351290Sdim  std::vector<ConstString> path;
21351290Sdim  ConstString search_path;
22351290Sdim  ConstString sysroot;
23351290Sdim};
24351290Sdim
25351290Sdim} // namespace lldb_private
26351290Sdim
27351290Sdim#endif
28