| 77 | |
| 78 | template<typename T> |
| 79 | static QString tableRow(const QString &title, const T &argument) |
| 80 | { |
| 81 | return QStringLiteral("<tr><td>%1</td><td>%2</td></tr>").arg(title).arg(argument); |
| 82 | } |
| 83 | |
| 84 | static QString timestampRow(std::chrono::microseconds timestamp) |
| 85 | { |
no outgoing calls
no test coverage detected