| 18 | EngineConfig EngineConfig::empty = EngineConfig(); |
| 19 | |
| 20 | QString EngineConfig::toString() const { |
| 21 | QString s; |
| 22 | QTextStream(&s) << "nick: " << nick() << endl |
| 23 | << "password: " << password() << endl; |
| 24 | return s; |
| 25 | } |
nothing calls this directly
no outgoing calls
no test coverage detected