feat(library/io_state): add constructor for copying io_state, but replacing channels
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
49b2bb209d
commit
5df2331159
2 changed files with 7 additions and 0 deletions
|
@ -20,6 +20,12 @@ io_state::io_state(options const & opts, formatter const & fmt):
|
|||
m_regular_channel(std::make_shared<stdout_channel>()),
|
||||
m_diagnostic_channel(std::make_shared<stderr_channel>()) {
|
||||
}
|
||||
io_state::io_state(io_state const & ios, std::shared_ptr<output_channel> const & r, std::shared_ptr<output_channel> const d):
|
||||
m_options(ios.m_options),
|
||||
m_formatter(ios.m_formatter),
|
||||
m_regular_channel(r),
|
||||
m_diagnostic_channel(d) {
|
||||
}
|
||||
|
||||
io_state::~io_state() {}
|
||||
|
||||
|
|
|
@ -25,6 +25,7 @@ class io_state {
|
|||
public:
|
||||
io_state(formatter const & fmt);
|
||||
io_state(options const & opts, formatter const & fmt);
|
||||
io_state(io_state const & ios, std::shared_ptr<output_channel> const & r, std::shared_ptr<output_channel> const d);
|
||||
~io_state();
|
||||
|
||||
options get_options() const { return m_options; }
|
||||
|
|
Loading…
Reference in a new issue