로딩중...
검색중...
일치하는것 없음
consoleStream.hpp
이 파일의 문서화 페이지로 가기
1
2#pragma once
3
5
6namespace by {
7
13 class _nout consoleStream: public stream {
14 BY_ME(consoleStream, stream)
15
16 public:
18
19 public:
20 // Stream:
21 const std::string& getName() const override;
22
23 using super::logBypass;
24 nbool logBypass(const nchar* msg) override;
25 };
26}
Console output stream for logging to standard output
Definition consoleStream.hpp:13
nbool logBypass(const nchar *msg) override
Log message directly without formatting
Base class for all logging output streams
Definition stream.hpp:13
Rich logging support with polymorphic type conversion
Definition richLog.hpp:34