some more thinking about delay manager
This commit is contained in:
parent
99fd001292
commit
9fff409630
17 changed files with 320 additions and 96 deletions
|
@ -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() {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue