int GetLastTouchMilliSeconds()

in src/outmdsd/LogItem.h [47:51]


    int GetLastTouchMilliSeconds() const 
    {
        auto now = std::chrono::steady_clock::now();
        return (now - m_touchTime) / std::chrono::milliseconds(1);
    }