#ifndef RTORRENT_DISPLAY_WINDOW_LOG_H #define RTORRENT_DISPLAY_WINDOW_LOG_H #include #include #include "window.h" namespace display { class WindowLog : public Window { public: typedef torrent::log_buffer::const_iterator iterator; WindowLog(torrent::log_buffer* l); ~WindowLog(); virtual void redraw(); void receive_update(); private: inline iterator find_older(); torrent::log_buffer* m_log; torrent::utils::SchedulerEntry m_task_update; align_cacheline std::atomic m_log_updating{}; }; } #endif