StandardOutputWriter.hpp 754 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-11-06
  6. * Changed: 2022-07-03
  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. #include <ls_std/os/dynamic_goal.hpp>
  13. namespace ls
  14. {
  15. namespace std
  16. {
  17. namespace io
  18. {
  19. class LS_STD_DYNAMIC_GOAL StandardOutputWriter : public ls::std::core::interface_type::IWriter
  20. {
  21. public:
  22. StandardOutputWriter() = default;
  23. ~StandardOutputWriter() = default;
  24. bool write(const ls::std::core::type::byte_field &_data) override;
  25. };
  26. }
  27. }
  28. }
  29. #endif