aboutsummaryrefslogtreecommitdiff
path: root/core/src/Model/Project.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/Model/Project.hpp')
-rw-r--r--core/src/Model/Project.hpp6
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.