diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-23 19:07:30 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-23 19:07:30 -0400 |
commit | 944c63e6f26d1f05ba6f63c60f510d3796872f3e (patch) | |
tree | e1fc54319c2c42c16a64e95930acaca063658863 /python/py_xact.cc | |
parent | 057506ab6dddbfb75d1bb29289602f375ca57df5 (diff) | |
download | fork-ledger-944c63e6f26d1f05ba6f63c60f510d3796872f3e.tar.gz fork-ledger-944c63e6f26d1f05ba6f63c60f510d3796872f3e.tar.bz2 fork-ledger-944c63e6f26d1f05ba6f63c60f510d3796872f3e.zip |
The Great Renaming, Part II
The last commit did not contain the majority of changes because of a
slight mishap. This contains the real changeset.
Diffstat (limited to 'python/py_xact.cc')
-rw-r--r-- | python/py_xact.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/python/py_xact.cc b/python/py_xact.cc index fb5dbf8e..441d5741 100644 --- a/python/py_xact.cc +++ b/python/py_xact.cc @@ -47,8 +47,20 @@ using namespace boost::python; void export_xact() { #if 0 + class_< xact_base_t > ("XactBase") + ; class_< xact_t > ("Xact") ; + struct_< xact_finalizer_t > ("XactFinalizer") + ; + class_< auto_xact_t > ("AutoXact") + ; + struct_< auto_xact_finalizer_t > ("AutoXactFinalizer") + ; + class_< period_xact_t > ("PeriodXact") + ; + class_< func_finalizer_t > ("FuncFinalizer") + ; #endif //register_optional_to_python<amount_t>(); |