Client work.

git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@244 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2005-01-29 21:06:53 +00:00
parent 96a28a78bb
commit 53f32e74a1
15 changed files with 498 additions and 64 deletions
+2 -2
View File
@@ -8,9 +8,9 @@
namespace input {
bool
void
Manager::pressed(int key) {
return std::find_if(begin(), end(), std::bind2nd(std::mem_fun(&Bindings::pressed), key)) != end();
std::find_if(begin(), end(), std::bind2nd(std::mem_fun(&Bindings::pressed), key));
}
}
+3 -1
View File
@@ -24,7 +24,9 @@ public:
using Base::push_back;
using Base::push_front;
bool pressed(int key);
void pressed(int key);
// Slot for unreacted keys.
};
}