/* * 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_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::std::io { class LS_STD_DYNAMIC_GOAL SectionPairSectionArgumentEvaluator : public ls::std::core::Class, public ls::std::core::interface_type::IEvaluator { public: explicit SectionPairSectionArgumentEvaluator(::std::string _section); ~SectionPairSectionArgumentEvaluator() noexcept override; void evaluate() override; private: ::std::string section{}; }; } #endif