diff options
author | John Wiegley <johnw@newartisans.com> | 2004-08-29 23:33:22 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-08-29 23:33:22 -0400 |
commit | 9eea66c6f8182ff396141a7be11837b0a0473a36 (patch) | |
tree | 852ab529ef2a3750f02490d06b28acc7aa8c6a84 /pyamounts.cc | |
parent | 63367e3aac062a7b55a3ba5c36a6c7fffbb6e2cc (diff) | |
download | fork-ledger-9eea66c6f8182ff396141a7be11837b0a0473a36.tar.gz fork-ledger-9eea66c6f8182ff396141a7be11837b0a0473a36.tar.bz2 fork-ledger-9eea66c6f8182ff396141a7be11837b0a0473a36.zip |
added some more python files
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(); +} |