| 60 | } |
| 61 | |
| 62 | Message LogFile::operator[](size_t i) const |
| 63 | { |
| 64 | auto& msg = m_messages[i]; |
| 65 | auto props = m_processInfo.GetProcessProperties(msg.uid); |
| 66 | return Message(msg.time, msg.systemTime, props.pid, Str(props.name).str(), m_storage[i], props.color); |
| 67 | } |
| 68 | |
| 69 | size_t LogFile::GetHistorySize() const |
| 70 | { |
nothing calls this directly
no test coverage detected