Adding view of tracker list.

git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@338 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2005-03-10 18:59:24 +00:00
parent a4dbdffcb8
commit f664e1ce0c
12 changed files with 240 additions and 10 deletions
+32
View File
@@ -0,0 +1,32 @@
#ifndef RTORRENT_DISPLAY_TRACKER_LIST_H
#define RTORRENT_DISPLAY_TRACKER_LIST_H
#include <list>
#include "window.h"
namespace torrent {
class Tracker;
}
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