some more thinking about delay manager

This commit is contained in:
Blue 2023-03-07 21:45:01 +03:00
parent 99fd001292
commit 9fff409630
Signed by: blue
GPG key ID: 9B203B252A63EE38
17 changed files with 320 additions and 96 deletions

View file

@ -16,17 +16,13 @@
#include "job.h"
Core::Job::Job(Core::Job::Id p_id, Core::Job::Type p_type) :
Core::DelayManager::Job::Job(Id p_id, Type p_type) :
id (p_id),
type (p_type) {}
Core::Job::Job(const Core::Job& other) :
Core::DelayManager::Job::Job(const Job& other) :
id(other.id),
type(other.type) {}
Core::Job::~Job() {}
Core::Job::Type Core::Job::getType() const {
return type;
}
Core::DelayManager::Job::~Job() {}