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

Concept for decorator writers. More...

#include <writer_category.h>

Concept definition

template<typename T>
concept kcenon::logger::DecoratorWriter = std::is_base_of_v<log_writer_interface, T> &&
std::is_base_of_v<decorator_writer_tag, T>
Concept for decorator writers.

Detailed Description

Concept for decorator writers.

Template Parameters
TType to check

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

Since
1.4.0

Definition at line 240 of file writer_category.h.