1234567891011121314151617181920212223242526272829303132333435363738 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-08-17
- * Changed: 2022-07-03
- *
- * */
- #ifndef LS_STD_FILE_WRITER_HPP
- #define LS_STD_FILE_WRITER_HPP
- #include <ls_std/core/Class.hpp>
- #include <ls_std/core/interface/IWriter.hpp>
- #include "File.hpp"
- #include <ls_std/os/dynamic_goal.hpp>
- 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(ls::std::io::File &_file);
- ~FileWriter() override = default;
- void reset(ls::std::io::File &_file);
- bool write(const ls::std::core::type::byte_field &_data) override;
- private:
- ls::std::io::File file;
- static void _init(ls::std::io::File &_file);
- };
- }
- #endif
|