00001 /* 00002 Free Download Manager Copyright (c) 2003-2007 FreeDownloadManager.ORG 00003 */ 00004 00005 00006 00007 00008 #include <libtorrent/peer_id.hpp> 00009 #include <boost/python.hpp> 00010 00011 void bind_big_number() 00012 { 00013 using namespace boost::python; 00014 using namespace libtorrent; 00015 00016 class_<big_number>("big_number") 00017 .def(self == self) 00018 .def(self != self) 00019 .def(self < self) 00020 .def(self_ns::str(self)) 00021 ; 00022 } 00023
1.5.6