| 786 | // ***** Endpoint for ValidatorIn ****** |
| 787 | C_ATTR(in, :Local :AutoArgs) |
| 788 | void in(Context *c) |
| 789 | { |
| 790 | Validator v({new ValidatorIn(u"field"_s, |
| 791 | QStringList({u"eins"_s, u"zwei"_s, u"drei"_s}), |
| 792 | Qt::CaseSensitive, |
| 793 | m_validatorMessages)}); |
| 794 | checkResponse(c, v.validate(c)); |
| 795 | } |
| 796 | |
| 797 | // ***** Endpoint for ValidatorInteger ****** |
| 798 | C_ATTR(integer, :Local :AutoArgs) |