Future use: Import and export task-list.
This commit is contained in:
parent
741cf88f7f
commit
3d9e3d019d
@ -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();
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user