Header and source file cleanup

This commit is contained in:
John J. Camilleri
2021-09-21 22:28:44 +02:00
parent 71dac482c8
commit b4b8572af3
8 changed files with 81 additions and 2204 deletions

View File

@@ -12,24 +12,9 @@ typedef struct {
PgfRevision revision; // transient branch
} TransactionObject;
extern PyTypeObject pgf_TransactionType;
PyTypeObject pgf_TransactionType;
TransactionObject *
PGF_newTransaction(PGFObject *self, PyObject *args);
PyObject *
Transaction_commit(TransactionObject *self, PyObject *args);
PyObject *
Transaction_createFunction(TransactionObject *self, PyObject *args);
PyObject *
Transaction_dropFunction(TransactionObject *self, PyObject *args);
PyObject *
Transaction_createCategory(TransactionObject *self, PyObject *args);
PyObject *
Transaction_dropCategory(TransactionObject *self, PyObject *args);
#endif // PYPGF_TRANSACTIONS_H_