13 lines
218 B
C++
13 lines
218 B
C++
#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();
|
|
}
|