| 21 | #include "textvalue.h" |
| 22 | |
| 23 | OrdinalFunction::OrdinalFunction() : Function("ord") |
| 24 | { |
| 25 | addDescription(tr("Convert a character to a number representing the Unicode code point.")); |
| 26 | addParameter("value"); |
| 27 | } |
| 28 | |
| 29 | Value& OrdinalFunction::evaluate(const Context& ctx) const |
| 30 | { |
nothing calls this directly
no outgoing calls
no test coverage detected