mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-16 23:22:31 +00:00
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:
@@ -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();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user