rtorrent: Initial key handler implemented.

git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@239 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2005-01-28 18:43:39 +00:00
parent f9b95c6255
commit b994517819
10 changed files with 151 additions and 20 deletions
+19
View File
@@ -0,0 +1,19 @@
#include "config.h"
#include <algorithm>
#include "bindings.h"
namespace input {
bool
Bindings::pressed(int key) {
const_iterator itr = find(key);
if (itr != end())
itr->second();
return itr != end();
}
}