| 123 | |
| 124 | |
| 125 | string TimerGroup::DetailHeader() const |
| 126 | { |
| 127 | stringstream ss; |
| 128 | ss << setw(14) << left << "Name " << |
| 129 | setw(11) << right << "Number" << |
| 130 | setw(11) << "User ticks" << |
| 131 | setw(11) << "Avg" << |
| 132 | setw(11) << "System" << |
| 133 | setw(11) << "Avg ms" << "\n"; |
| 134 | return ss.str(); |
| 135 | } |
| 136 | |
| 137 | |
| 138 | string TimerGroup::SumLine(const Timer& sumTotal) const |