Future use: Import and export task-list.

This commit is contained in:
glax 2023-05-19 13:59:26 +02:00
parent 741cf88f7f
commit 3d9e3d019d

View File

@ -10,6 +10,7 @@ public class TaskManager
{ {
_chapterCollection = new(); _chapterCollection = new();
_allTasks = new (); _allTasks = new ();
ImportTasks();
Thread taskChecker = new(TaskCheckerThread); Thread taskChecker = new(TaskCheckerThread);
taskChecker.Start(); taskChecker.Start();
} }
@ -34,5 +35,16 @@ public class TaskManager
public void Shutdown() public void Shutdown()
{ {
_continueRunning = false; _continueRunning = false;
ExportTasks();
}
public void ImportTasks()
{
throw new NotImplementedException();
}
public void ExportTasks()
{
throw new NotImplementedException();
} }
} }