12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-08-20
- * Changed: 2020-11-20
- *
- * */
- #ifndef LS_STD_FILE_OUTPUT_STREAM_HPP
- #define LS_STD_FILE_OUTPUT_STREAM_HPP
- #include <ls_std/base/Class.hpp>
- #include "File.hpp"
- #include "IWriter.hpp"
- #include <fstream>
- namespace ls_std {
- class FileOutputStream : public Class, public IWriter {
- public:
- explicit FileOutputStream(File& _file);
- explicit FileOutputStream(File& _file, bool _append);
- ~FileOutputStream();
- void close();
- bool write(const ls_std::byte_field& _data) override;
- private:
- bool append {};
- File file;
- std::ofstream outputStream {};
- void _close();
- void _init();
- };
- }
- #endif
|