jwiegley / ledger

Double-entry accounting system with a command-line reporting interface

This URL has Read+Write access

jwiegley (author)
Fri Feb 20 19:53:19 -0800 2009
commit  a5d69b6d076f55ad90a0995c00f20560bf8fb1ab
tree    0fe00bc567cad515921f250edc0f08c75841d574
parent  e1b0203f5ec9db435b1c7fa9ff680bf51efccfd7
ledger / amounts.cc
100644 15 lines (11 sloc) 0.218 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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();
}