IReader.hpp 605 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Co-Author: Claude Sonnet 4.6 (LLM)
  4. * Company: Lynar Studios
  5. * E-Mail: webmaster@lynarstudios.com
  6. * Created: 2020-08-17
  7. * Changed: 2026-06-23
  8. *
  9. * */
  10. #ifndef LS_STD_I_READER_HPP
  11. #define LS_STD_I_READER_HPP
  12. #include <ls-std/core/type/Types.hpp>
  13. #include <ls-std/os/dynamic-goal.hpp>
  14. namespace ls::standard::core::interface_type
  15. {
  16. class LS_STD_DYNAMIC_GOAL IReader
  17. {
  18. public:
  19. IReader();
  20. virtual ~IReader();
  21. virtual ls::standard::core::type::byte_field read() = 0;
  22. };
  23. }
  24. #endif