12345678910111213141516171819202122232425262728293031323334 |
- #ifndef LS_STD_SECTION_PAIR_ROW_VALUE_VALIDATOR_HPP
- #define LS_STD_SECTION_PAIR_ROW_VALUE_VALIDATOR_HPP
- #include <ls-std/core/Class.hpp>
- #include <ls-std/core/interface/IValidator.hpp>
- #include <string>
- namespace ls::std::io
- {
- class SectionPairRowValueValidator : public ls::std::core::Class, public ls::std::core::interface_type::IValidator
- {
- public:
- explicit SectionPairRowValueValidator(::std::string _value);
- ~SectionPairRowValueValidator() override;
- bool isValid() override;
- private:
- ::std::string value{};
- };
- }
- #endif
|