12345678910111213141516171819202122232425262728293031323334 |
- #ifndef STRICTRXVALIDATOR_H
- #define STRICTRXVALIDATOR_H
- #include <QRegularExpression>
- #include <QValidator>
- class AStrictRxValidator : public QRegularExpressionValidator
- {
- using QRegularExpressionValidator::QRegularExpressionValidator;
- public:
- QValidator::State validate(QString &txt, int &pos) const;
- };
- #endif
|