mirror of
https://github.com/quizhizhe/LiteLoaderBDS-1.16.40.git
synced 2025-06-01 11:43:41 +00:00
28 lines
452 B
C++
28 lines
452 B
C++
#ifndef ENTT_META_POLICY_HPP
|
|
#define ENTT_META_POLICY_HPP
|
|
|
|
|
|
namespace entt {
|
|
|
|
|
|
/*! @brief Empty class type used to request the _as ref_ policy. */
|
|
struct as_ref_t {};
|
|
|
|
|
|
/*! @brief Empty class type used to request the _as cref_ policy. */
|
|
struct as_cref_t {};
|
|
|
|
|
|
/*! @brief Empty class type used to request the _as-is_ policy. */
|
|
struct as_is_t {};
|
|
|
|
|
|
/*! @brief Empty class type used to request the _as void_ policy. */
|
|
struct as_void_t {};
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif
|