/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2023-02-09 * Changed: 2023-02-09 * * */ #ifndef LS_STD_SECTION_PAIR_ROW_VALUE_VALIDATOR_HPP #define LS_STD_SECTION_PAIR_ROW_VALUE_VALIDATOR_HPP #include #include #include 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