mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-06 18:22:32 +00:00
27 lines
386 B
C++
27 lines
386 B
C++
#ifndef RTORRENT_DISPLAY_TRACKER_LIST_H
|
|
#define RTORRENT_DISPLAY_TRACKER_LIST_H
|
|
|
|
#include "window.h"
|
|
|
|
namespace core {
|
|
class Download;
|
|
}
|
|
|
|
namespace display {
|
|
|
|
class WindowTrackerList : public Window {
|
|
public:
|
|
WindowTrackerList(core::Download* d, unsigned int* focus);
|
|
|
|
virtual void redraw();
|
|
|
|
private:
|
|
core::Download* m_download;
|
|
|
|
unsigned int* m_focus;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|