00001 /* 00002 Free Download Manager Copyright (c) 2003-2007 FreeDownloadManager.ORG 00003 */ 00004 00005 00006 00007 00008 #include <libtorrent/torrent.hpp> 00009 #include <boost/python.hpp> 00010 00011 using namespace boost::python; 00012 using namespace libtorrent; 00013 00014 void bind_torrent() 00015 { 00016 class_<torrent, boost::noncopyable>("torrent", no_init); 00017 } 00018
1.5.6