diff options
author | Kyle Fuller <kyle@fuller.li> | 2018-01-23 03:58:25 +0000 |
---|---|---|
committer | Kyle Fuller <kyle@fuller.li> | 2018-01-23 03:58:25 +0000 |
commit | 0e740b5f42a4c29639984fb85df0fca5d0e1f7dc (patch) | |
tree | f6b443e15b91bdd14604f18211059ab0bdbb16d6 | |
parent | 699b2fc32c05871032adb6c6b3be489aef6e8720 (diff) | |
download | fork-ledger-0e740b5f42a4c29639984fb85df0fca5d0e1f7dc.tar.gz fork-ledger-0e740b5f42a4c29639984fb85df0fca5d0e1f7dc.tar.bz2 fork-ledger-0e740b5f42a4c29639984fb85df0fca5d0e1f7dc.zip |
journal: Expose register_account to Python
-rw-r--r-- | src/py_journal.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/py_journal.cc b/src/py_journal.cc index fbc6dd2d..51ff20c2 100644 --- a/src/py_journal.cc +++ b/src/py_journal.cc @@ -135,6 +135,11 @@ namespace { return journal.find_account(name, auto_create); } + account_t * py_register_account(journal_t& journal, const string& name, post_t* post) + { + return journal.register_account(name, post, journal.master); + } + #if 0 std::size_t py_read(journal_t& journal, const string& pathname) { @@ -286,6 +291,10 @@ void export_journal() return_internal_reference<1, with_custodian_and_ward_postcall<1, 0> >()) + .def("register_account", py_register_account, + return_internal_reference<1, + with_custodian_and_ward_postcall<1, 0> >()) + .def("expand_aliases", &journal_t::expand_aliases, return_internal_reference<1, with_custodian_and_ward_postcall<1, 0> >()) |