diff options
author | rtk0c <[email protected]> | 2021-04-28 21:25:55 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2021-04-28 21:28:34 -0700 |
commit | 538e804fc9beb83e711a210ffbb6badc15f285d5 (patch) | |
tree | 6157a4065cfca3204f3406a4533095214ec3e04b /core/src/Model/TransactionsModel.hpp | |
parent | 00fd95526677d670d002ca81069636f0f74b91f7 (diff) |
Add table visualization for purchases
Diffstat (limited to 'core/src/Model/TransactionsModel.hpp')
-rw-r--r-- | core/src/Model/TransactionsModel.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/src/Model/TransactionsModel.hpp b/core/src/Model/TransactionsModel.hpp index 117c27a..7a71fca 100644 --- a/core/src/Model/TransactionsModel.hpp +++ b/core/src/Model/TransactionsModel.hpp @@ -18,6 +18,10 @@ public: class PurchasesTable { public: + SQLite::Statement GetRowCountStatement; + SQLite::Statement GetRowsStatement; + +public: PurchasesTable(TransactionModel& db); }; |