LLDB mainline
FormatterSection.h
Go to the documentation of this file.
1//===-- FormattersSection.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_DATAFORMATTERS_FORMATTERSECTION_H
10#define LLDB_DATAFORMATTERS_FORMATTERSECTION_H
11
13#include "lldb/lldb-forward.h"
14
15namespace lldb_private {
16/// Load type summaries embedded in the binary. These are type summaries
17/// provided by the authors of the code.
19
20/// Load data formatters embedded in the binary. These are formatters provided
21/// by the authors of the code using LLDB formatter bytecode.
23
24} // namespace lldb_private
25
26#endif // LLDB_DATAFORMATTERS_FORMATTERSECTION_H
A class that represents a running process on the host machine.
void LoadTypeSummariesForModule(lldb::ModuleSP module_sp)
Load type summaries embedded in the binary.
void LoadFormattersForModule(lldb::ModuleSP module_sp)
Load data formatters embedded in the binary.
std::shared_ptr< lldb_private::Module > ModuleSP
Definition: lldb-forward.h:373