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 untrusted user: blue
GPG key ID: 9B203B252A63EE38
17 changed files with 320 additions and 96 deletions

View file

@ -16,17 +16,13 @@
#include "cardinternal.h"
Core::CardInternal::CardInternal(Job::Id p_id, const QString& p_jid) :
Job(p_id, Type::cardInternal),
jid(p_id)
Core::DelayManager::CardInternal::CardInternal(Id p_id, const QString& p_jid) :
Job(p_id, Type::cardInternal),
Contact(p_id, p_jid, Type::cardInternal)
{}
Core::CardInternal::CardInternal(Job::Id p_id, const QString& p_jid, Job::Type p_type) :
Job(p_id, p_type),
jid(p_id)
{}
Core::CardInternal::CardInternal(const Core::CardInternal& other) :
Core::DelayManager::CardInternal::CardInternal(const CardInternal& other) :
Job(other),
jid(other.jid)
Contact(other)
{}