Types.hpp 427 B

1234567891011121314151617181920212223
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-08-07
  6. * Changed: 2021-04-23
  7. *
  8. * */
  9. #ifndef LS_STD_TYPES_HPP
  10. #define LS_STD_TYPES_HPP
  11. #include <string>
  12. namespace ls_std
  13. {
  14. using byte = char;
  15. using byte_field = std::string;
  16. using long_type = long long int;
  17. using version_type = uint16_t;
  18. }
  19. #endif