| 20 | #include "context.h" |
| 21 | |
| 22 | PowFunction::PowFunction() : Function("pow") |
| 23 | { |
| 24 | addDescription(tr("Returns the value raised to the power of exponent.")); |
| 25 | addParameter("value"); |
| 26 | addParameter("exponent"); |
| 27 | } |
| 28 | |
| 29 | Value& PowFunction::evaluate(const Context& ctx) const |
| 30 | { |
nothing calls this directly
no outgoing calls
no test coverage detected