fwd.hpp 395 B

1234567891011121314151617181920
  1. #ifndef ENTT_POLY_FWD_HPP
  2. #define ENTT_POLY_FWD_HPP
  3. #include <cstddef>
  4. namespace entt {
  5. template<typename, std::size_t Len = sizeof(double[2]), std::size_t = alignof(double[2])>
  6. class basic_poly;
  7. /**
  8. * @brief Alias declaration for the most common use case.
  9. * @tparam Concept Concept descriptor.
  10. */
  11. template<typename Concept>
  12. using poly = basic_poly<Concept>;
  13. } // namespace entt
  14. #endif