SectionPairRowValueArgumentEvaluator.hpp 960 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-10
  6. * Changed: 2023-02-11
  7. *
  8. * */
  9. #ifndef LS_STD_SECTION_PAIR_ROW_VALUE_ARGUMENT_EVALUATOR_HPP
  10. #define LS_STD_SECTION_PAIR_ROW_VALUE_ARGUMENT_EVALUATOR_HPP
  11. #include <ls-std/core/interface/IEvaluator.hpp>
  12. #include <ls-std/io/section-pair/SectionPairTypes.hpp>
  13. #include <ls-std/os/dynamic-goal.hpp>
  14. #include <string>
  15. namespace ls::std::io
  16. {
  17. class LS_STD_DYNAMIC_GOAL SectionPairRowValueArgumentEvaluator : public ls::std::core::interface_type::IEvaluator
  18. {
  19. public:
  20. explicit SectionPairRowValueArgumentEvaluator(ls::std::io::section_pair_row_value _value, ::std::string _message);
  21. ~SectionPairRowValueArgumentEvaluator() override;
  22. void evaluate() override;
  23. private:
  24. ::std::string message{};
  25. ls::std::io::section_pair_row_value value{};
  26. };
  27. }
  28. #endif