| 228 | { |
| 229 | public: |
| 230 | ArbiterOutStream(const std::string& localPath, |
| 231 | const std::string& remotePath, std::ios::openmode mode) : |
| 232 | std::ofstream(localPath, mode), |
| 233 | m_remotePath(remotePath), |
| 234 | m_localFile(localPath) |
| 235 | {} |
| 236 | |
| 237 | virtual ~ArbiterOutStream() |
| 238 | { |
nothing calls this directly
no outgoing calls
no test coverage detected