ECSTASY
All in the name
Loading...
Searching...
No Matches
RegistryModifier.hpp
Go to the documentation of this file.
1
11
12#ifndef ECSTASY_REGISTRY_CONCEPTS_REGISTRYMODIFIER_HPP_
13#define ECSTASY_REGISTRY_CONCEPTS_REGISTRYMODIFIER_HPP_
14
16#include "util/Allocator.hpp"
17
18namespace ecstasy
19{
28 template <typename M>
29 concept RegistryModifier = requires() {
30 typename M::Modifier;
32 };
33
34} // namespace ecstasy
35
36#endif /* !ECSTASY_REGISTRY_CONCEPTS_REGISTRYMODIFIER_HPP_ */
Registry Modifier concept, which are placeholders for the actual query modifiers.
Defines a query modifier type.
Definition Modifier.hpp:31
Contains the concepts for query modifiers.
Namespace containing all symbols specific to ecstasy.
Definition ecstasy.hpp:30