| 108 | |
| 109 | |
| 110 | string TimerGroup::Header() const |
| 111 | { |
| 112 | stringstream ss; |
| 113 | ss << setw(14) << left << "Name" << |
| 114 | setw(9) << right << "Count" << |
| 115 | setw(11) << "User" << |
| 116 | setw(7) << "Avg" << |
| 117 | setw(5) << "%" << |
| 118 | setw(11) << "Syst" << |
| 119 | setw(7) << "Avg" << |
| 120 | setw(5) << "%" << "\n"; |
| 121 | return ss.str(); |
| 122 | } |
| 123 | |
| 124 | |
| 125 | string TimerGroup::DetailHeader() const |
nothing calls this directly
no outgoing calls
no test coverage detected