summaryrefslogtreecommitdiff
path: root/pyamounts.cc
blob: a8b982ccdef914817a03af5f530cf126d57fc9d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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();
}