SectionPairIdentifierArgumentEvaluator.hpp 899 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-09
  6. * Changed: 2023-02-10
  7. *
  8. * */
  9. #ifndef LS_STD_SECTION_PAIR_IDENTIFIER_ARGUMENT_EVALUATOR_HPP
  10. #define LS_STD_SECTION_PAIR_IDENTIFIER_ARGUMENT_EVALUATOR_HPP
  11. #include "SectionPairTypes.hpp"
  12. #include <ls-std/core/interface/IEvaluator.hpp>
  13. #include <string>
  14. namespace ls::std::io
  15. {
  16. class SectionPairIdentifierArgumentEvaluator : public ls::std::core::interface_type::IEvaluator
  17. {
  18. public:
  19. explicit SectionPairIdentifierArgumentEvaluator(ls::std::io::section_pair_identifier _identifier, ::std::string _message);
  20. ~SectionPairIdentifierArgumentEvaluator() override;
  21. void evaluate() override;
  22. private:
  23. ls::std::io::section_pair_identifier identifier{};
  24. ::std::string message{};
  25. };
  26. }
  27. #endif