summaryrefslogtreecommitdiff
path: root/pyamounts.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2004-09-20 04:07:02 -0400
committerJohn Wiegley <johnw@newartisans.com>2004-09-20 04:07:02 -0400
commita7ea33a8ecc9886dd7a94906ae30c861b4da3540 (patch)
tree6c2c4df6620f25de5505694c1c8b6d9424b13381 /pyamounts.cc
parent5429792edc077d8c65d7bbf0f98c3d0e59837775 (diff)
downloadfork-ledger-a7ea33a8ecc9886dd7a94906ae30c861b4da3540.tar.gz
fork-ledger-a7ea33a8ecc9886dd7a94906ae30c861b4da3540.tar.bz2
fork-ledger-a7ea33a8ecc9886dd7a94906ae30c861b4da3540.zip
passing --enable-python to configure is now required for python support
Diffstat (limited to 'pyamounts.cc')
-rw-r--r--pyamounts.cc13
1 files changed, 0 insertions, 13 deletions
diff --git a/pyamounts.cc b/pyamounts.cc
deleted file mode 100644
index a8b982cc..00000000
--- a/pyamounts.cc
+++ /dev/null
@@ -1,13 +0,0 @@
-#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();
-}