| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Co-Author: Claude Sonnet 4.6 (LLM)
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2023-02-10
- * Changed: 2026-06-23
- *
- * */
- #ifndef LS_STD_SECTION_PAIR_VALUE_ARGUMENT_EVALUATOR_HPP
- #define LS_STD_SECTION_PAIR_VALUE_ARGUMENT_EVALUATOR_HPP
- #include <ls-std/core/Class.hpp>
- #include <ls-std/core/interface/IEvaluator.hpp>
- #include <ls-std/io/section-pair/SectionPairTypes.hpp>
- #include <ls-std/os/dynamic-goal.hpp>
- #include <string>
- /*
- * @doc: class(name: 'SectionPairValueArgumentEvaluator', package: 'io')
- * @doc: io.SectionPairValueArgumentEvaluator.description('This class checks whether a value argument is valid and throws an exception if that is not the case.')
- * */
- namespace ls::standard::io
- {
- class LS_STD_DYNAMIC_GOAL SectionPairValueArgumentEvaluator : public ls::standard::core::interface_type::IEvaluator, public ls::standard::core::Class
- {
- public:
- explicit SectionPairValueArgumentEvaluator(ls::standard::io::section_pair_row_value _value);
- ~SectionPairValueArgumentEvaluator() noexcept override;
- void evaluate() override;
- private:
- ls::standard::io::section_pair_row_value value{};
- };
- }
- #endif
|