FileReader.hpp 955 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-08-17
  6. * Changed: 2022-07-03
  7. *
  8. * */
  9. #ifndef LS_STD_FILE_READER_HPP
  10. #define LS_STD_FILE_READER_HPP
  11. #include <ls_std/core/Class.hpp>
  12. #include "File.hpp"
  13. #include <ls_std/core/interface/IReader.hpp>
  14. #include <ls_std/os/dynamic_goal.hpp>
  15. namespace ls
  16. {
  17. namespace std
  18. {
  19. namespace io
  20. {
  21. class LS_STD_DYNAMIC_GOAL FileReader : public ls::std::core::Class, public ls::std::core::interface_type::IReader
  22. {
  23. public:
  24. explicit FileReader(ls::std::io::File &_file);
  25. ~FileReader() override = default;
  26. ls::std::core::type::byte_field read() override;
  27. void reset(ls::std::io::File &_file);
  28. private:
  29. ls::std::io::File file;
  30. static void _init(ls::std::io::File &_file);
  31. };
  32. }
  33. }
  34. }
  35. #endif