/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2023-02-20 * Changed: 2024-09-13 * * */ #ifndef LS_STD_SECTION_PAIR_ROW_ARGUMENT_EVALUATOR_HPP #define LS_STD_SECTION_PAIR_ROW_ARGUMENT_EVALUATOR_HPP #include #include #include #include /* * @doc: class(name: 'SectionPairRowArgumentEvaluator', package: 'io') * @doc: io.SectionPairRowArgumentEvaluator.description('This class checks whether a row argument is valid and throws an exception if that is not the case.') * */ namespace ls::std::io { class LS_STD_DYNAMIC_GOAL SectionPairRowArgumentEvaluator : public ls::std::core::Class, public ls::std::core::interface_type::IEvaluator { public: explicit SectionPairRowArgumentEvaluator(::std::string _sectionPairRow); ~SectionPairRowArgumentEvaluator() noexcept override; void evaluate() override; private: ::std::string sectionPairRow{}; }; } #endif