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::InheritFromEngine Concept Reference

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

#include <headers/utility/engine.hpp>

Concept definition

template<typename Type>
concept utility::InheritFromEngine = std::is_base_of_v<Engine, Type>
Concept to ensure a type inherits from Engine.
Definition engine.hpp:216

Detailed Description

Concept to ensure a type inherits from Engine.

Template Parameters
TypeThe type to check.

Definition at line 216 of file engine.hpp.