Construct an adaptor that proxies OS and forwards base constructor arguments.

Synopsis

Declared in <llvm/Support/raw_ostream_proxy.h>

template<class... ArgsT>
explicit
raw_ostream_proxy_adaptor(
    raw_ostream& OS,
    ArgsT&&... Args);

Description

Takes ownership of OS's buffer preference and sets OS unbuffered so that flush goes through this proxy.

Parameters

Name

Description

OS

Stream to proxy.

Args

Arguments forwarded to the RawOstreamT base constructor.

Created with MrDocs