Add bindings for global/abstract flag functions

This commit is contained in:
John J. Camilleri
2021-09-27 13:33:34 +02:00
parent 6ce619c146
commit 8c04eed5c3
4 changed files with 169 additions and 11 deletions

View File

@@ -14,10 +14,11 @@ typedef struct {
PyTypeObject pgf_TransactionType;
PyObject *
PGF_checkoutBranch(PGFObject *self, PyObject *args);
PyObject *PGF_checkoutBranch(PGFObject *self, PyObject *args);
TransactionObject *
PGF_newTransaction(PGFObject *self, PyObject *args);
TransactionObject *PGF_newTransaction(PGFObject *self, PyObject *args);
PyObject *PGF_getGlobalFlag(PGFObject *self, PyObject *args);
PyObject *PGF_getAbstractFlag(PGFObject *self, PyObject *args);
#endif // PYPGF_TRANSACTIONS_H_