IEncoding.hpp 490 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2022-01-03
  6. * Changed: 2022-01-03
  7. *
  8. * */
  9. #ifndef LS_STD_I_ENCODING_HPP
  10. #define LS_STD_I_ENCODING_HPP
  11. #include <string>
  12. namespace ls_std
  13. {
  14. class IEncoding
  15. {
  16. public:
  17. virtual std::string encode(const std::string& _sequence) = 0;
  18. virtual std::string decode(const std::string& _sequence) = 0;
  19. };
  20. }
  21. #endif