ls-std-encoding.hpp 558 B

1234567891011121314151617181920
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2022-05-17
  6. * Changed: 2024-09-09
  7. *
  8. * */
  9. #ifndef LS_STD_LS_STD_ENCODING_HPP
  10. #define LS_STD_LS_STD_ENCODING_HPP
  11. /*
  12. * @doc: package(name: 'encoding')
  13. * @doc: encoding.description('This package provides encoding functionalities, which in the current scope is limited to Base64. This would also include the provision of a Base-64-CLI-tool.')
  14. * */
  15. #include <ls-std/encoding/Base64.hpp>
  16. #endif