We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fee6253 commit 212effeCopy full SHA for 212effe
bindings/guile/gnc-engine-guile.cpp
@@ -1787,6 +1787,11 @@ gnc_book_to_scm (const QofBook *book)
1787
return gnc_generic_to_scm(book, "_p_QofBook");
1788
}
1789
1790
+SCM gnc_split_to_scm (const Split *split)
1791
+{
1792
+ return gnc_generic_to_scm (split, "_p_Split");
1793
+}
1794
+
1795
static swig_type_info *
1796
get_acct_type ()
1797
{
bindings/guile/gnc-engine-guile.h
@@ -66,6 +66,8 @@ SCM gnc_commodity_to_scm(const gnc_commodity* commodity);
66
67
SCM gnc_book_to_scm(const QofBook* book);
68
69
+SCM gnc_split_to_scm (const Split *split);
70
71
/* Conversion routines used with tax tables */
72
GncAccountValue* gnc_scm_to_account_value_ptr(SCM valuearg);
73
0 commit comments