forked from OSchip/llvm-project
And make the globbing behavior available via the SB API
llvm-svn: 228660
This commit is contained in:
parent
af61b65f63
commit
c11b101fb6
|
@ -140,7 +140,13 @@ public:
|
|||
|
||||
void
|
||||
SetShell (const char * path);
|
||||
|
||||
|
||||
bool
|
||||
GetGlobArguments ();
|
||||
|
||||
void
|
||||
SetGlobArguments (bool glob);
|
||||
|
||||
uint32_t
|
||||
GetResumeCount ();
|
||||
|
||||
|
|
|
@ -91,6 +91,12 @@ public:
|
|||
|
||||
void
|
||||
SetShell (const char * path);
|
||||
|
||||
bool
|
||||
GetGlobArguments ();
|
||||
|
||||
void
|
||||
SetGlobArguments (bool glob);
|
||||
|
||||
uint32_t
|
||||
GetResumeCount ();
|
||||
|
|
|
@ -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 ()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue