mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-09 11:42:33 +00:00
28 lines
470 B
C++
28 lines
470 B
C++
#ifndef RTORRENT_DISPLAY_WINDOW_LOG_COMPLETE_H
|
|
#define RTORRENT_DISPLAY_WINDOW_LOG_COMPLETE_H
|
|
|
|
#include <torrent/utils/log_buffer.h>
|
|
|
|
#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
|