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,11 +16,15 @@
|
|||
|
||||
#include "infoforuser.h"
|
||||
|
||||
Core::InfoForUser::InfoForUser(Job::Id p_id, const QString& p_jid) :
|
||||
CardInternal(p_id, p_jid, Type::infoForUser)
|
||||
Core::DelayManager::InfoForUser::InfoForUser(Id p_id, const QString& p_jid) :
|
||||
Job(p_id, Type::infoForUser),
|
||||
Contact(p_id, p_jid, Type::infoForUser),
|
||||
Info(p_id, Type::infoForUser)
|
||||
{}
|
||||
|
||||
Core::InfoForUser::InfoForUser(const Core::InfoForUser& other) :
|
||||
CardInternal(other)
|
||||
Core::DelayManager::InfoForUser::InfoForUser(const InfoForUser& other) :
|
||||
Job(other),
|
||||
Contact(other),
|
||||
Info(other)
|
||||
{}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue