| 180 | } |
| 181 | |
| 182 | void |
| 183 | DeltaMonitor::Output(ostream &out) |
| 184 | { |
| 185 | if (!DeltaMonitor::is_running_) |
| 186 | return; |
| 187 | |
| 188 | if (is_delta_) |
| 189 | DeltaMonitor::OutputStatistics(out); |
| 190 | |
| 191 | assert(!output_file_.empty()); |
| 192 | std::string s; |
| 193 | |
| 194 | get_sequence(s); |
| 195 | ofstream ofile(output_file_.c_str()); |
| 196 | ofile << s; |
| 197 | } |
| 198 | |
| 199 | const std::string & |
| 200 | DeltaMonitor::get_input() |
nothing calls this directly
no test coverage detected