| 21 | #include "onceonly.h" |
| 22 | |
| 23 | WriteModule::WriteModule(Reporter& r) : |
| 24 | Module(r,"write"), |
| 25 | output(r.output) |
| 26 | { |
| 27 | addDescription(tr("Write the given text to the console window.")); |
| 28 | } |
| 29 | |
| 30 | WriteModule::WriteModule(Reporter& r, const QString& n) : Module(r,n), output(r.output) |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected