Types.hpp 535 B

12345678910111213141516171819202122232425
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-08-07
  6. * Changed: 2023-05-16
  7. *
  8. * */
  9. #ifndef LS_STD_TYPES_HPP
  10. #define LS_STD_TYPES_HPP
  11. #include <ls-std/lib/nlohmann_json/include/nlohmann/json.hpp>
  12. #include <string>
  13. namespace ls::std::core::type
  14. {
  15. using byte_type = char;
  16. using byte_field = ::std::string;
  17. using long_type = long long int;
  18. using version_type = int;
  19. using json = nlohmann::json;
  20. }
  21. #endif