summaryrefslogtreecommitdiff
path: root/src/hash_wrapper.cpp
diff options
context:
space:
mode:
authorzyp <zyp@localhost>2006-05-08 15:42:12 +0200
committerzyp <zyp@localhost>2006-05-08 15:42:12 +0200
commit373495b3a1c8ccdcfece70bac69625b6823ccec0 (patch)
tree69297ccb4179a0cd9a7638f61622b83e4a43712d /src/hash_wrapper.cpp
parent161978b24c8ffdc05795a1ae109fcf76ea7d20d0 (diff)
[project @ zyp-20060508134212-c2adcf41fc2bca06]
[project @ 26] Fixing mess in SVN.
Diffstat (limited to 'src/hash_wrapper.cpp')
-rw-r--r--src/hash_wrapper.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/hash_wrapper.cpp b/src/hash_wrapper.cpp
deleted file mode 100644
index a4173b9..0000000
--- a/src/hash_wrapper.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-#include "hash.h"
-
-#include <boost/python.hpp>
-using namespace boost::python;
-
-BOOST_PYTHON_MODULE(_hash)
-{
- class_<Hash>("Hash")
- .def("update", &Hash::update)
- .def("crc32", &Hash::crc32)
- .def("ed2k", &Hash::ed2k)
- .def("md5", &Hash::md5)
- .def("sha1", &Hash::sha1);
-}