Helios Engine
A modular ECS based data-oriented C++23 game engine framework
Loading...
Searching...
No Matches
helios::ecs::ScheduleWithNameTrait Concept Reference

Concept for schedules that provide a name. More...

#include <schedule.hpp>

Concept definition

template<typename T>
concept ScheduleWithNameTrait = ScheduleTrait<T> && requires {
{ std::remove_cvref_t<T>::kName } -> std::convertible_to<std::string_view>;
}
Concept for schedules.
Definition schedule.hpp:51
Concept for schedules that provide a name.
Definition schedule.hpp:60

Detailed Description

Concept for schedules that provide a name.

A schedule with name trait must satisfy ScheduleTrait and provide:

  • static constexpr std::string_view kName variable

Definition at line 60 of file schedule.hpp.