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 GetInScopeOnly() const;
50
51 void SetInScopeOnly(bool);
52
54
56
58
60
61protected:
63
64 const VariablesOptionsImpl *operator->() const;
65
67
69
70 const VariablesOptionsImpl &ref() const;
71
73
74 void SetOptions(VariablesOptionsImpl *lldb_object_ptr);
75
76private:
77 std::unique_ptr<VariablesOptionsImpl> m_opaque_up;
78};
79
80} // namespace lldb
81
82#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