fwd.hpp 420 B

1234567891011121314151617181920
  1. #ifndef ENTT_CORE_FWD_HPP
  2. #define ENTT_CORE_FWD_HPP
  3. #include <cstddef>
  4. #include "../config/config.h"
  5. namespace entt {
  6. template<std::size_t Len = sizeof(double[2]), std::size_t = alignof(double[2])>
  7. class basic_any;
  8. /*! @brief Alias declaration for type identifiers. */
  9. using id_type = ENTT_ID_TYPE;
  10. /*! @brief Alias declaration for the most common use case. */
  11. using any = basic_any<>;
  12. } // namespace entt
  13. #endif