mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-07 10:42:31 +00:00
53f32e74a1
git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@244 e378c898-3ddf-0310-93e7-cc216c733640
17 lines
251 B
C++
17 lines
251 B
C++
#include "config.h"
|
|
|
|
#include <algorithm>
|
|
#include <functional>
|
|
|
|
#include "manager.h"
|
|
#include "bindings.h"
|
|
|
|
namespace input {
|
|
|
|
void
|
|
Manager::pressed(int key) {
|
|
std::find_if(begin(), end(), std::bind2nd(std::mem_fun(&Bindings::pressed), key));
|
|
}
|
|
|
|
}
|