Advertisement
Tainel

src/base/features/index.hpp

May 28th, 2023 (edited)
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.04 KB | Source Code | 0 0
  1. #ifndef BASE_FEATURES_HPP
  2. #define BASE_FEATURES_HPP
  3.  
  4. // Pragma macros.
  5. #include"pragmas.hpp"
  6.  
  7. // Attribute macros.
  8. #include"attributes.hpp"
  9.  
  10. // Character cast macro and whitespace constants.
  11. #include"characters.hpp"
  12.  
  13. // Integer type aliases, cast macros, and prime constants.
  14. #include"integers.hpp"
  15.  
  16. // Floating point type aliases and cast macros.
  17. #include"floats.hpp"
  18.  
  19. // Container type aliases.
  20. #include"containers.hpp"
  21.  
  22. // Type modifications, concept definitions, and relative cast macros.
  23. #include"metaprogramming.hpp"
  24.  
  25. // Shortcut macros.
  26. #include"shortcuts.hpp"
  27.  
  28. // Input function and overloads.
  29. #include"input.hpp"
  30.  
  31. // Output function, overloads, and container wrapper.
  32. #include"output.hpp"
  33.  
  34. // Debug macros.
  35. #include"debug.hpp"
  36.  
  37. // Timer utility type.
  38. #include"timer.hpp"
  39.  
  40. // Random seeder and utility type.
  41. #include"random.hpp"
  42.  
  43. // Epsilon constants and custom comparison and extreme functors.
  44. #include"compare.hpp"
  45.  
  46. // Hash merge function, specializations, and randomizer functor.
  47. #include"hash.hpp"
  48.  
  49. #endif
  50.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement