StandardOutputWriter.hpp 696 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-11-06
  6. * Changed: 2022-05-19
  7. *
  8. * */
  9. #ifndef LS_STD_STANDARD_OUTPUT_WRITER_HPP
  10. #define LS_STD_STANDARD_OUTPUT_WRITER_HPP
  11. #include <ls_std/core/interface/IWriter.hpp>
  12. namespace ls
  13. {
  14. namespace std
  15. {
  16. namespace io
  17. {
  18. class StandardOutputWriter : public ls::std::core::interface_type::IWriter
  19. {
  20. public:
  21. StandardOutputWriter() = default;
  22. ~StandardOutputWriter() = default;
  23. bool write(const ls::std::core::type::byte_field &_data) override;
  24. };
  25. }
  26. }
  27. }
  28. #endif