| 288 | |
| 289 | |
| 290 | void ABstats::PrintSumDetail(ofstream& fout) const |
| 291 | { |
| 292 | fout << std::string(65, '-') << "\n"; |
| 293 | |
| 294 | fout << setw(2) << "S" << |
| 295 | setw(7) << ABsides[1].sum << |
| 296 | setw(7) << ABsides[0].sum; |
| 297 | |
| 298 | for (int p = 0; p < AB_SIZE; p++) |
| 299 | fout << setw(6) << ABplaces[p].sum; |
| 300 | fout << "\n\n"; |
| 301 | } |
| 302 | |
| 303 | |
| 304 | void ABstats::PrintStats(ofstream& fout) |
nothing calls this directly
no outgoing calls
no test coverage detected