LLDB
mainline
llvm-project
lldb
include
lldb
Symbol
SourceModule.h
Go to the documentation of this file.
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
9
#ifndef LLDB_SYMBOL_SOURCEMODULE_H
10
#define LLDB_SYMBOL_SOURCEMODULE_H
11
12
#include "
lldb/Utility/ConstString.h
"
13
#include <vector>
14
15
namespace
lldb_private
{
16
17
/// Information needed to import a source-language module.
18
struct
SourceModule
{
19
/// Something like "Module.Submodule".
20
std::vector<ConstString>
path
;
21
ConstString
search_path
;
22
ConstString
sysroot
;
23
};
24
25
}
// namespace lldb_private
26
27
#endif
lldb_private::SourceModule
Information needed to import a source-language module.
Definition:
SourceModule.h:18
lldb_private::ConstString
Definition:
ConstString.h:40
lldb_private::SourceModule::sysroot
ConstString sysroot
Definition:
SourceModule.h:22
lldb_private
A class that represents a running process on the host machine.
Definition:
SBCommandInterpreterRunOptions.h:16
ConstString.h
lldb_private::SourceModule::search_path
ConstString search_path
Definition:
SourceModule.h:21
lldb_private::SourceModule::path
std::vector< ConstString > path
Something like "Module.Submodule".
Definition:
SourceModule.h:20
Generated on Thu May 19 2022 08:09:58 for LLDB by
1.8.17