forked from blue/squawk
some more thinking about delay manager
This commit is contained in:
parent
99fd001292
commit
9fff409630
17 changed files with 320 additions and 96 deletions
|
@ -20,6 +20,7 @@
|
|||
#include <stdint.h>
|
||||
|
||||
namespace Core {
|
||||
namespace DelayManager {
|
||||
|
||||
class Job {
|
||||
public:
|
||||
|
@ -31,20 +32,18 @@ public:
|
|||
infoForUser,
|
||||
ownInfoForUser
|
||||
};
|
||||
|
||||
protected:
|
||||
Job(Id id, Type type);
|
||||
Job(const Job& other);
|
||||
|
||||
public:
|
||||
virtual ~Job();
|
||||
|
||||
const Id id;
|
||||
|
||||
public:
|
||||
Type getType() const;
|
||||
|
||||
protected:
|
||||
Type type;
|
||||
const Type type;
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
#endif // CORE_DELAYMANAGER_JOB_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue