1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2023-02-21
- * Changed: 2023-02-21
- *
- * */
- #ifndef LS_STD_SECTION_PAIR_FILE_READER_PARAMETER_HPP
- #define LS_STD_SECTION_PAIR_FILE_READER_PARAMETER_HPP
- #include <ls-std/core/interface/IEvaluator.hpp>
- #include <ls-std/core/interface/IReader.hpp>
- #include <ls-std/io/section-pair/model/SectionPairDocument.hpp>
- #include <ls-std/os/dynamic-goal.hpp>
- #include <memory>
- #include <string>
- namespace ls::std::io
- {
- class LS_STD_DYNAMIC_GOAL SectionPairFileReaderParameter
- {
- public:
- SectionPairFileReaderParameter();
- ~SectionPairFileReaderParameter();
- [[nodiscard]] ::std::shared_ptr<ls::std::io::SectionPairDocument> getDocument();
- [[nodiscard]] ::std::shared_ptr<ls::std::core::interface_type::IEvaluator> getFileExistenceEvaluator();
- [[nodiscard]] ::std::string getFilePath();
- [[nodiscard]] ::std::shared_ptr<ls::std::core::interface_type::IReader> getReader();
- void setDocument(const ::std::shared_ptr<ls::std::io::SectionPairDocument> &_document);
- void setFileExistenceEvaluator(const ::std::shared_ptr<ls::std::core::interface_type::IEvaluator> &_fileExistenceEvaluator);
- void setFilePath(const ::std::string &_filePath);
- void setReader(const ::std::shared_ptr<ls::std::core::interface_type::IReader> &_reader);
- private:
- ::std::shared_ptr<ls::std::io::SectionPairDocument> document{};
- ::std::shared_ptr<ls::std::core::interface_type::IEvaluator> fileExistenceEvaluator{};
- ::std::string filePath{};
- ::std::shared_ptr<ls::std::core::interface_type::IReader> reader{};
- };
- }
- #endif
|