/* * Author: Patrick-Christopher Mattulat * Co-Author: Claude Sonnet 4.6 (LLM) * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2023-02-20 * Changed: 2026-06-23 * * */ #ifndef LS_STD_SECTION_PAIR_SECTION_ARGUMENT_EVALUATOR_HPP #define LS_STD_SECTION_PAIR_SECTION_ARGUMENT_EVALUATOR_HPP #include #include #include #include /* * @doc: class(name: 'SectionPairSectionArgumentEvaluator', package: 'io') * @doc: io.SectionPairSectionArgumentEvaluator.description('This class checks whether a whole section argument is valid and throws an exception if that is not the case.') * */ namespace ls::standard::io { class LS_STD_DYNAMIC_GOAL SectionPairSectionArgumentEvaluator : public ls::standard::core::Class, public ls::standard::core::interface_type::IEvaluator { public: explicit SectionPairSectionArgumentEvaluator(::std::string _section); ~SectionPairSectionArgumentEvaluator() noexcept override; void evaluate() override; private: ::std::string section{}; }; } #endif