* Added "base" type to the "*_link" commands.

* Added a bunch of client id's from solsTiCe.


git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@850 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2007-01-21 16:10:27 +00:00
parent 1d1b5710fa
commit 81921ba9a4
3 changed files with 45 additions and 16 deletions
+6
View File
@@ -270,6 +270,12 @@ public:
m_slotSetDownload.set(rak::convert_fn<void, core::Download*, const string_type&>(slotSetDownload));
}
template <typename SlotGetDownload>
VariableDownloadStringSlot(SlotGetDownload* slotGetDownload, void* slotSetDownload) {
m_slotGetDownload.set(rak::convert_fn<string_type, core::Download*>(slotGetDownload));
m_slotSetDownload.set(NULL);
}
template <typename SlotGetDownload, typename SlotSetDownload>
VariableDownloadStringSlot(SlotGetDownload* slotGetDownload, SlotSetDownload* slotSetDownload) {
m_slotGetDownload.set(rak::convert_fn<string_type, core::Download*>(slotGetDownload));