| 3231 | class Writer : base::NoCopy { |
| 3232 | public: |
| 3233 | Writer(Level level, const char* file, base::type::LineNumber line, |
| 3234 | const char* func, base::DispatchAction dispatchAction = base::DispatchAction::NormalLog, |
| 3235 | base::type::VerboseLevel verboseLevel = 0) : |
| 3236 | m_level(level), m_file(file), m_line(line), m_func(func), m_verboseLevel(verboseLevel), |
| 3237 | m_logger(nullptr), m_proceed(false), m_dispatchAction(dispatchAction) { |
| 3238 | } |
| 3239 | |
| 3240 | virtual ~Writer(void) { |
| 3241 | processDispatch(); |
nothing calls this directly
no outgoing calls
no test coverage detected