summaryrefslogtreecommitdiff
path: root/src/pyledger.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2007-05-04 11:41:58 +0000
committerJohn Wiegley <johnw@newartisans.com>2008-04-13 03:38:38 -0400
commit96684b72ca367bfd4dbe2e45a9a66c56204eb533 (patch)
tree3e218d1048d5941baa1d1064bc2539ef2df55a45 /src/pyledger.cc
parent93096b77f3c03b826c8857e4817ccd1bca52f9ee (diff)
downloadledger-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.cc4
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();