diff options
Diffstat (limited to 'pyamounts.cc')
-rw-r--r-- | pyamounts.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pyamounts.cc b/pyamounts.cc new file mode 100644 index 00000000..a8b982cc --- /dev/null +++ b/pyamounts.cc @@ -0,0 +1,13 @@ +#include <boost/python.hpp> + +using namespace boost::python; + +void export_amount(); +void export_balance(); +void export_value(); + +BOOST_PYTHON_MODULE(amounts) { + export_amount(); + export_balance(); + export_value(); +} |