SectionPairRowSingleValueValidator.hpp 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-19
  6. * Changed: 2024-09-13
  7. *
  8. * */
  9. #ifndef LS_STD_SECTION_PAIR_ROW_SINGLE_VALUE_VALIDATOR_HPP
  10. #define LS_STD_SECTION_PAIR_ROW_SINGLE_VALUE_VALIDATOR_HPP
  11. #include <ls-std/core/Class.hpp>
  12. #include <ls-std/core/interface/IValidator.hpp>
  13. #include <ls-std/os/dynamic-goal.hpp>
  14. /*
  15. * @doc: class(name: 'SectionPairRowSingleValueValidator', package: 'io')
  16. * @doc: io.SectionPairRowSingleValueValidator.description('This validator checks whether a content is a valid Section Pair row single value.')
  17. * */
  18. namespace ls::std::io
  19. {
  20. class LS_STD_DYNAMIC_GOAL SectionPairRowSingleValueValidator : public ls::std::core::Class, public ls::std::core::interface_type::IValidator
  21. {
  22. public:
  23. explicit SectionPairRowSingleValueValidator(::std::string _singleValueRow);
  24. ~SectionPairRowSingleValueValidator() noexcept override;
  25. [[nodiscard]] static ::std::string getValidationRegex();
  26. [[nodiscard]] bool isValid() override;
  27. private:
  28. ::std::string singleValueRow{};
  29. [[nodiscard]] static ::std::string _getValidationRegex();
  30. };
  31. }
  32. #endif