| 22 | */ |
| 23 | |
| 24 | QManagedRequest::QManagedRequest(const QString& cmd, const QStringList& args) |
| 25 | : sCommand(cmd), lArguments(args) {} |
| 26 | |
| 27 | QManagedRequest::QManagedRequest(const QManagedRequest& r) |
| 28 | : sCommand(r.sCommand), lArguments(r.lArguments) {} |
nothing calls this directly
no outgoing calls
no test coverage detected