| 379 | // ***** Endpoint for ValidatorBefore with QTime ****** |
| 380 | C_ATTR(beforeTime, :Local :AutoArgs) |
| 381 | void beforeTime(Context *c) |
| 382 | { |
| 383 | Validator v({new ValidatorBefore( |
| 384 | u"before_field"_s, QTime(12, 0), QString{}, nullptr, m_validatorMessages)}); |
| 385 | checkResponse(c, v.validate(c)); |
| 386 | } |
| 387 | |
| 388 | // ***** Endpoint for ValidatorBefore with QDateTime ****** |
| 389 | C_ATTR(beforeDateTime, :Local :AutoArgs) |