Files
rtorrent/src/display/window_log_complete.h
T
2025-05-02 18:03:51 +09:00

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