LLDB mainline
SBVariablesOptions.h
Go to the documentation of this file.
1//===-- SBVariablesOptions.h ------------------------------------------*- C++
2//-*-===//
3//
4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5// See https://llvm.org/LICENSE.txt for license information.
6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLDB_API_SBVARIABLESOPTIONS_H
11#define LLDB_API_SBVARIABLESOPTIONS_H
12
13#include "lldb/API/SBDefines.h"
14
16
17namespace lldb {
18
20public:
22
24
26
28
29 explicit operator bool() const;
30
31 bool IsValid() const;
32
33 bool GetIncludeArguments() const;
34
35 void SetIncludeArguments(bool);
36
38
40
41 bool GetIncludeLocals() const;
42
43 void SetIncludeLocals(bool);
44
45 bool GetIncludeStatics() const;
46
47 void SetIncludeStatics(bool);
48
49 bool GetIncludeSynthetic() const;
50
51 void SetIncludeSynthetic(bool);
52
53 bool GetInScopeOnly() const;
54
55 void SetInScopeOnly(bool);
56
58
60
62
64
65protected:
67
68 const VariablesOptionsImpl *operator->() const;
69
71
73
74 const VariablesOptionsImpl &ref() const;
75
77
78 void SetOptions(VariablesOptionsImpl *lldb_object_ptr);
79
80private:
81 std::unique_ptr<VariablesOptionsImpl> m_opaque_up;
82};
83
84} // namespace lldb
85
86#endif // LLDB_API_SBVARIABLESOPTIONS_H
#define LLDB_API
Definition SBDefines.h:28
SBVariablesOptions & operator=(const SBVariablesOptions &options)
void SetOptions(VariablesOptionsImpl *lldb_object_ptr)
std::unique_ptr< VariablesOptionsImpl > m_opaque_up
lldb::DynamicValueType GetUseDynamic() const
VariablesOptionsImpl & ref()
VariablesOptionsImpl * operator->()
void SetUseDynamic(lldb::DynamicValueType)
VariablesOptionsImpl * get()
bool GetIncludeRecognizedArguments(const lldb::SBTarget &) const