🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
492 B

  1. #ifndef ENTT_CONTAINER_FWD_HPP
  2. #define ENTT_CONTAINER_FWD_HPP
  3. #include <functional>
  4. #include <memory>
  5. namespace entt {
  6. template<
  7. typename Key,
  8. typename Type,
  9. typename = std::hash<Key>,
  10. typename = std::equal_to<Key>,
  11. typename = std::allocator<std::pair<const Key, Type>>>
  12. class dense_map;
  13. template<
  14. typename Type,
  15. typename = std::hash<Type>,
  16. typename = std::equal_to<Type>,
  17. typename = std::allocator<Type>>
  18. class dense_set;
  19. } // namespace entt
  20. #endif