StandardOutputWriter.hpp 551 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-11-06
  6. * Changed: 2020-11-06
  7. *
  8. * */
  9. #ifndef LS_STD_STANDARD_OUTPUT_WRITER_HPP
  10. #define LS_STD_STANDARD_OUTPUT_WRITER_HPP
  11. #include "IWriter.hpp"
  12. namespace ls_std {
  13. class StandardOutputWriter : public IWriter {
  14. public:
  15. StandardOutputWriter() = default;
  16. ~StandardOutputWriter() = default;
  17. bool write(const ls_std::byte_field& _data) override;
  18. };
  19. }
  20. #endif