co_ecs 0.9.0
Cobalt ECS
Loading...
Searching...
No Matches
views.hpp
Go to the documentation of this file.
1#pragma once
2
3#ifndef CO_ECS_USE_RANGE_V3
4#include <ranges>
5#else
6#include <range/v3/all.hpp>
7#endif
8
9namespace co_ecs::detail {
10
11#ifndef CO_ECS_USE_RANGE_V3
12namespace views = std::views;
13#else
14namespace views = ranges::views;
15#endif
16
17} // namespace co_ecs::detail
Definition component.hpp:17