diff options
author | rtk0c <[email protected]> | 2021-06-03 10:16:05 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2021-06-03 10:16:05 -0700 |
commit | 236d5d5c85bb05013f86b8096b85a79d6a58641e (patch) | |
tree | 580df6c865991c26bf79f9f6746bb1d6826bbce7 /core/src/Model/Project.hpp | |
parent | 7a325e1b3be04bc54941431458903022da1643ac (diff) |
Rename TransactionsModel to MainDatabase
Diffstat (limited to 'core/src/Model/Project.hpp')
-rw-r--r-- | core/src/Model/Project.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/src/Model/Project.hpp b/core/src/Model/Project.hpp index 1eca09d..c971445 100644 --- a/core/src/Model/Project.hpp +++ b/core/src/Model/Project.hpp @@ -1,8 +1,8 @@ #pragma once +#include "Model/Database.hpp" #include "Model/Items.hpp" #include "Model/Template/Template.hpp" -#include "Model/TransactionsModel.hpp" #include "Model/Workflow/Workflow.hpp" #include <json/forwards.h> @@ -25,9 +25,9 @@ private: std::string mRootPathString; std::string mName; - // This is put after the private fields, so that when TransactionModel's constructor runs, all of them will be initialized + // This is put after the private fields, so that when XxxDatabase's constructor runs, all of them will be initialized public: - TransactionModel Database; + MainDatabase Database; public: /// Load the project from a directory containing the cplt_project.json file. |