/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2020-08-17 * Changed: 2023-05-16 * * */ #ifndef LS_STD_FILE_WRITER_HPP #define LS_STD_FILE_WRITER_HPP #include "File.hpp" #include #include #include namespace ls::std::io { class LS_STD_DYNAMIC_GOAL FileWriter : public ls::std::core::Class, public ls::std::core::interface_type::IWriter { public: explicit FileWriter(const ls::std::io::File &_file); ~FileWriter() noexcept override; void reset(const ls::std::io::File &_file); bool write(const ls::std::core::type::byte_field &_data) override; // nodiscard is optional here private: ls::std::io::File file; }; } #endif