From 3d9e3d019da1454ecc96b7accc6ff100b7a29847 Mon Sep 17 00:00:00 2001 From: glax Date: Fri, 19 May 2023 13:59:26 +0200 Subject: [PATCH] Future use: Import and export task-list. --- Tranga/TaskManager.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Tranga/TaskManager.cs b/Tranga/TaskManager.cs index c39c0be..b028dd7 100644 --- a/Tranga/TaskManager.cs +++ b/Tranga/TaskManager.cs @@ -10,6 +10,7 @@ public class TaskManager { _chapterCollection = new(); _allTasks = new (); + ImportTasks(); Thread taskChecker = new(TaskCheckerThread); taskChecker.Start(); } @@ -34,5 +35,16 @@ public class TaskManager public void Shutdown() { _continueRunning = false; + ExportTasks(); + } + + public void ImportTasks() + { + throw new NotImplementedException(); + } + + public void ExportTasks() + { + throw new NotImplementedException(); } } \ No newline at end of file