Logger System 0.1.3
High-performance C++20 thread-safe logging system with asynchronous capabilities
Loading...
Searching...
No Matches
kcenon::logger::CompositeWriter Concept Reference

Concept for composite writers. More...

#include <writer_category.h>

Concept definition

template<typename T>
concept kcenon::logger::CompositeWriter = std::is_base_of_v<log_writer_interface, T> &&
std::is_base_of_v<composite_writer_tag, T>
Concept for composite writers.

Detailed Description

Concept for composite writers.

Template Parameters
TType to check

Requires the type to be a log writer and tagged as composite.

Since
1.4.0

Definition at line 254 of file writer_category.h.