SectionPairRowValueValidator.hpp 767 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_ROW_VALUE_VALIDATOR_HPP
  10. #define LS_STD_SECTION_PAIR_ROW_VALUE_VALIDATOR_HPP
  11. #include <ls-std/core/Class.hpp>
  12. #include <ls-std/core/interface/IValidator.hpp>
  13. #include <string>
  14. namespace ls::std::io
  15. {
  16. class SectionPairRowValueValidator : public ls::std::core::Class, public ls::std::core::interface_type::IValidator
  17. {
  18. public:
  19. explicit SectionPairRowValueValidator(::std::string _value);
  20. ~SectionPairRowValueValidator() override;
  21. bool isValid() override;
  22. private:
  23. ::std::string value{};
  24. };
  25. }
  26. #endif