| 144 | } |
| 145 | |
| 146 | std::string TimeTraceModel::getStacktrace(int index) |
| 147 | { |
| 148 | auto it = time_calls_map.begin(); |
| 149 | std::advance(it, index); |
| 150 | if (it == time_calls_map.end()) |
| 151 | return std::string(""); |
| 152 | |
| 153 | return it->second.stacktrace; |
| 154 | } |
| 155 | |
| 156 | void TimeTraceModel::clearData() |
| 157 | { |
no test coverage detected