#ifndef RTORRENT_DISPLAY_WINDOW_LOG_COMPLETE_H #define RTORRENT_DISPLAY_WINDOW_LOG_COMPLETE_H #include #include "window.h" namespace display { class WindowLogComplete : public Window { public: typedef torrent::log_buffer::const_iterator iterator; WindowLogComplete(torrent::log_buffer* l); ~WindowLogComplete(); virtual void redraw(); private: inline iterator find_older(); torrent::log_buffer* m_log; }; } #endif