| 260 | |
| 261 | |
| 262 | void ABstats::PrintHeaderDetail(ofstream& fout) const |
| 263 | { |
| 264 | fout << " d" << setw(7) << "Side1" << setw(7) << "Side0"; |
| 265 | |
| 266 | for (int p = 0; p < AB_SIZE; p++) |
| 267 | fout << setw(6) << p; |
| 268 | |
| 269 | fout << "\n" << std::string(65, '-') << "\n"; |
| 270 | } |
| 271 | |
| 272 | |
| 273 | void ABstats::PrintStatsDetail( |
nothing calls this directly
no outgoing calls
no test coverage detected