blob: 6c8f61c1cf73bc03b0a0d781fa340eb38be87e24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*************************************************
* Boost.Python module definition *
* (C) 2005-2006 Jack Lloyd <lloyd@randombit.net> *
*************************************************/
#include <boost/python.hpp>
using namespace boost::python;
extern void export_basic_types();
extern void export_filters();
extern void export_pipe();
extern void export_x509();
BOOST_PYTHON_MODULE(_botan)
{
export_basic_types();
export_filters();
export_pipe();
export_x509();
}
|