![]() |
Andrey Semashev
22.04.2007
The header contains implementation of a text output stream sink backend.
namespace boost { namespace log { namespace sinks { template<typename CharT> class basic_text_ostream_backend; typedef basic_text_ostream_backend< char > text_ostream_backend; // Convenience typedef for narrow-character logging. typedef basic_text_ostream_backend< wchar_t > wtext_ostream_backend; // Convenience typedef for wide-character logging. } } }