File: amounts.cc

package info (click to toggle)
ledger 2.6.2-3.1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 3,076 kB
  • sloc: cpp: 17,785; sh: 10,246; lisp: 2,167; makefile: 205; python: 53; perl: 11
file content (14 lines) | stat: -rw-r--r-- 218 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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();
}