| 485 | // ***** Endpoint for ValidatorBetween with string ****** |
| 486 | C_ATTR(betweenString, :Local :AutoArgs) |
| 487 | void betweenString(Context *c) |
| 488 | { |
| 489 | Validator v({new ValidatorBetween( |
| 490 | u"between_field"_s, QMetaType::QString, 5, 10, m_validatorMessages)}); |
| 491 | checkResponse(c, v.validate(c)); |
| 492 | } |
| 493 | |
| 494 | // ***** Endpoint for ValidatorBoolean ****** |
| 495 | C_ATTR(boolean, :Local :AutoArgs) |