SectionPairIdentifierArgumentEvaluator.hpp 812 B

12345678910111213141516171819202122232425262728293031323334
  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-09
  7. *
  8. * */
  9. #ifndef LS_STD_SECTION_PAIR_IDENTIFIER_ARGUMENT_EVALUATOR_HPP
  10. #define LS_STD_SECTION_PAIR_IDENTIFIER_ARGUMENT_EVALUATOR_HPP
  11. #include <ls-std/core/interface/IEvaluator.hpp>
  12. #include <string>
  13. namespace ls::std::io
  14. {
  15. class SectionPairIdentifierArgumentEvaluator : public ls::std::core::interface_type::IEvaluator
  16. {
  17. public:
  18. SectionPairIdentifierArgumentEvaluator(::std::string _identifier, ::std::string _message);
  19. ~SectionPairIdentifierArgumentEvaluator() override;
  20. void evaluate() override;
  21. private:
  22. ::std::string identifier{};
  23. ::std::string message{};
  24. };
  25. }
  26. #endif