diff options
author | John Wiegley <johnw@newartisans.com> | 2004-09-14 06:25:29 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-09-14 06:25:29 -0400 |
commit | 061e19e302fb62eaafbd2029671bdd46dd4d7814 (patch) | |
tree | 081700c4302e6efc0f7954dbeaf8d86d4e63e907 /pyledger.cc | |
parent | 0b0c9b5bd13b1dedf100b137e3a35be60d3d3a27 (diff) | |
download | fork-ledger-061e19e302fb62eaafbd2029671bdd46dd4d7814.tar.gz fork-ledger-061e19e302fb62eaafbd2029671bdd46dd4d7814.tar.bz2 fork-ledger-061e19e302fb62eaafbd2029671bdd46dd4d7814.zip |
make config_t visible to Python; almost possible to implement main.cc in main.py
Diffstat (limited to 'pyledger.cc')
-rw-r--r-- | pyledger.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pyledger.cc b/pyledger.cc index d0f2a4be..923d8a88 100644 --- a/pyledger.cc +++ b/pyledger.cc @@ -17,6 +17,7 @@ void export_qif(); void export_gnucash(); #endif void export_option(); +void export_config(); void export_walk(); void export_format(); void export_valexpr(); @@ -35,6 +36,7 @@ BOOST_PYTHON_MODULE(ledger) { export_gnucash(); #endif export_option(); + export_config(); export_walk(); export_format(); export_valexpr(); |