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::event::InheritFromEvent Concept Reference

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

#include <headers/utility/event/event.hpp>

Concept definition

template<typename Type>
concept utility::event::InheritFromEvent = std::is_base_of_v<Event, Type>
Concept to ensure a type inherits from Event.
Definition event.hpp:71

Detailed Description

Concept to ensure a type inherits from Event.

Template Parameters
TypeThe type to check.

Definition at line 71 of file event.hpp.