Added start/stop keys.

Added more extensive download status information where only tracker
status used to be.


git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@279 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2005-02-15 21:59:35 +00:00
parent f348196f2e
commit 46120cbb30
16 changed files with 182 additions and 71 deletions
+3
View File
@@ -1,6 +1,7 @@
#ifndef RTORRENT_UI_CONTROL_H
#define RTORRENT_UI_CONTROL_H
#include "core/manager.h"
#include "display/manager.h"
#include "input/manager.h"
@@ -10,6 +11,7 @@ class Control {
public:
Control() {}
core::Manager& get_core() { return m_core; }
display::Manager& get_display() { return m_display; }
input::Manager& get_input() { return m_input; }
@@ -17,6 +19,7 @@ private:
Control(const Control&);
void operator = (const Control&);
core::Manager m_core;
display::Manager m_display;
input::Manager m_input;
};