/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2023-02-20 * Changed: 2023-02-22 * * */ #ifndef LS_STD_SECTION_PAIR_ROW_VALIDATOR_HPP #define LS_STD_SECTION_PAIR_ROW_VALIDATOR_HPP #include #include #include #include namespace ls::std::io { class LS_STD_DYNAMIC_GOAL SectionPairRowValidator : public ls::std::core::Class, public ls::std::core::interface_type::IValidator { public: explicit SectionPairRowValidator(::std::string _row); ~SectionPairRowValidator() noexcept override; [[nodiscard]] static ::std::string getValidationRegex(); [[nodiscard]] bool isValid() override; private: ::std::string row{}; [[nodiscard]] static ::std::string _getValidationRegex(); }; } #endif