diff options
author | John Wiegley <johnw@newartisans.com> | 2007-05-04 11:41:58 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 03:38:38 -0400 |
commit | 96684b72ca367bfd4dbe2e45a9a66c56204eb533 (patch) | |
tree | 3e218d1048d5941baa1d1064bc2539ef2df55a45 /src/pyledger.cc | |
parent | 93096b77f3c03b826c8857e4817ccd1bca52f9ee (diff) | |
download | ledger-96684b72ca367bfd4dbe2e45a9a66c56204eb533.tar.gz ledger-96684b72ca367bfd4dbe2e45a9a66c56204eb533.tar.bz2 ledger-96684b72ca367bfd4dbe2e45a9a66c56204eb533.zip |
Added code for converting ledger::string and boost::date_time to their
respective Python counterparts.
Diffstat (limited to 'src/pyledger.cc')
-rw-r--r-- | src/pyledger.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pyledger.cc b/src/pyledger.cc index 1fe5708a..013b445d 100644 --- a/src/pyledger.cc +++ b/src/pyledger.cc @@ -4,6 +4,8 @@ using namespace boost::python; namespace ledger { +void export_utils(); +void export_times(); void export_amount(); #if 0 void export_balance(); @@ -19,6 +21,8 @@ void export_valexpr(); void initialize_for_python() { + export_utils(); + export_times(); export_amount(); #if 0 export_balance(); |