Added the -i switch.

git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@306 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2005-02-25 16:23:45 +00:00
parent 5ef6be4912
commit f66424f642
7 changed files with 81 additions and 47 deletions
+7 -2
View File
@@ -3,16 +3,21 @@
#include "window.h"
namespace core {
class Manager;
}
namespace display {
class WindowStatusbar : public Window {
public:
WindowStatusbar();
WindowStatusbar(core::Manager* c);
virtual void redraw();
private:
int m_counter;
int m_counter;
core::Manager* m_core;
};
}