| 24 | #include "textvalue.h" |
| 25 | |
| 26 | TextModule::TextModule(Reporter& r) : Module(r, "text") |
| 27 | { |
| 28 | addDescription(tr("Generates text.")); |
| 29 | addParameter("text",tr("The text to generate")); |
| 30 | addParameter("font",tr("The font of the text")); |
| 31 | addParameter("size",tr("The size of the text")); |
| 32 | } |
| 33 | |
| 34 | Node* TextModule::evaluate(const Context& ctx) const |
| 35 | { |
nothing calls this directly
no outgoing calls
no test coverage detected