| 158 | |
| 159 | |
| 160 | string TimerGroup::DetailLines() const |
| 161 | { |
| 162 | stringstream ss; |
| 163 | for (unsigned i = 0; i < timers.size(); i++) |
| 164 | { |
| 165 | if (timers[i].Used()) |
| 166 | ss << timers[i].DetailLine(); |
| 167 | } |
| 168 | |
| 169 | return ss.str(); |
| 170 | } |
| 171 | |
| 172 | |
| 173 | string TimerGroup::DashLine() const |
no test coverage detected