| 102 | |
| 103 | |
| 104 | bool ConfigFileManager::write(const std::string& filename) { |
| 105 | std::ostream* stream = FILEMGR.createDataOutStream(filename); |
| 106 | if (stream == NULL) { |
| 107 | return false; |
| 108 | } |
| 109 | BZDB.write(writeBZDB, stream); |
| 110 | KEYMGR.iterate(writeKEYMGR, stream); |
| 111 | delete stream; |
| 112 | return true; |
| 113 | } |
| 114 | |
| 115 | |
| 116 | // Local Variables: *** |
nothing calls this directly
no test coverage detected