diff options
Diffstat (limited to 'lldb/source')
| -rw-r--r-- | lldb/source/API/SBLaunchInfo.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lldb/source/API/SBLaunchInfo.cpp b/lldb/source/API/SBLaunchInfo.cpp index dcb0e1b488b..007451ee32f 100644 --- a/lldb/source/API/SBLaunchInfo.cpp +++ b/lldb/source/API/SBLaunchInfo.cpp @@ -217,6 +217,18 @@ SBLaunchInfo::SetShell (const char * path) m_opaque_sp->SetShell (FileSpec(path, false)); } +bool +SBLaunchInfo::GetGlobArguments () +{ + return m_opaque_sp->GetGlobArguments(); +} + +void +SBLaunchInfo::SetGlobArguments (bool glob) +{ + m_opaque_sp->SetGlobArguments(glob); +} + uint32_t SBLaunchInfo::GetResumeCount () { |

