LLDB mainline
OptionGroupVariable.h
Go to the documentation of this file.
1//===-- OptionGroupVariable.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_INTERPRETER_OPTIONGROUPVARIABLE_H
10#define LLDB_INTERPRETER_OPTIONGROUPVARIABLE_H
11
14
15namespace lldb_private {
16
17// OptionGroupVariable
18
20public:
21 OptionGroupVariable(bool show_frame_options);
22
23 ~OptionGroupVariable() override = default;
24
25 llvm::ArrayRef<OptionDefinition> GetDefinitions() override;
26
27 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_value,
28 ExecutionContext *execution_context) override;
29
30 void OptionParsingStarting(ExecutionContext *execution_context) override;
31
33 show_args : 1, // Frame option only (include_frame_options == true)
34 show_recognized_args : 1, // Frame option only (include_frame_options ==
35 // true)
36 show_locals : 1, // Frame option only (include_frame_options == true)
37 show_globals : 1, // Frame option only (include_frame_options == true)
39 OptionValueString summary; // the name of a named summary
40 OptionValueString summary_string; // a summary string
41
42private:
45};
46
47} // namespace lldb_private
48
49#endif // LLDB_INTERPRETER_OPTIONGROUPVARIABLE_H
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_value, ExecutionContext *execution_context) override
llvm::ArrayRef< OptionDefinition > GetDefinitions() override
~OptionGroupVariable() override=default
OptionGroupVariable(const OptionGroupVariable &)=delete
void OptionParsingStarting(ExecutionContext *execution_context) override
const OptionGroupVariable & operator=(const OptionGroupVariable &)=delete
An error handling class.
Definition: Status.h:44
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14