utility 2026.1.9
A comprehensive C++ utilities library tailored for the development of modern desktop and extended reality (XR) applications.
Loading...
Searching...
No Matches
utility::logging::InheritFromLogger Concept Reference

Concept to ensure a type inherits from Logger. More...

#include <headers/utility/logging/logger.hpp>

Concept definition

template<typename Type>
concept utility::logging::InheritFromLogger = std::is_base_of_v<Logger, Type>
Concept to ensure a type inherits from Logger.
Definition logger.hpp:412

Detailed Description

Concept to ensure a type inherits from Logger.

Template Parameters
TypeThe type to check.

Definition at line 412 of file logger.hpp.