SBDebugger::SetInputFile, SetOutputFile, etc.
Summary: Add new methods to SBDebugger to set IO files as SBFiles instead of as FILE* streams. In future commits, the FILE* methods will be deprecated and these will become the primary way to set the debugger I/O streams. Reviewers: JDevlieghere, jasonmolenda, labath Reviewed By: labath Subscribers: lldb-commits Tags: #lldb Differential Revision: https://reviews.llvm.org/D68181 llvm-svn: 373563
This commit is contained in:
@@ -16,6 +16,8 @@ using namespace lldb_private;
|
||||
|
||||
SBFile::~SBFile() {}
|
||||
|
||||
SBFile::SBFile(FileSP file_sp) : m_opaque_sp(file_sp) {}
|
||||
|
||||
SBFile::SBFile() { LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBFile); }
|
||||
|
||||
SBFile::SBFile(FILE *file, bool transfer_ownership) {
|
||||
|
||||
Reference in New Issue
Block a user