Added GetAllPublications to TaskManager.

This commit is contained in:
glax 2023-05-19 17:36:15 +02:00
parent f0a4bc3e99
commit aa2ab0e1d0

View File

@ -68,6 +68,11 @@ public class TaskManager
_allTasks.CopyTo(ret);
return ret;
}
public Publication[] GetAllPublications()
{
return this._chapterCollection.Keys.ToArray();
}
public void Shutdown()
{