mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
22 lines
446 B
C++
22 lines
446 B
C++
#ifndef GRADIDO_LOGIN_SERVER_TASKS_GRADIDO_TASK
|
|
#define GRADIDO_LOGIN_SERVER_TASKS_GRADIDO_TASK
|
|
|
|
#include "../controller/PendingTask.h"
|
|
#include "../model/gradido/TransactionBody.h"
|
|
|
|
class GradidoTask : public controller::PendingTask, public NotificationList
|
|
{
|
|
public:
|
|
GradidoTask();
|
|
GradidoTask(model::table::PendingTask* dbModel);
|
|
bool isTimeoutTask() { return false; }
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
};
|
|
|
|
#endif //GRADIDO_LOGIN_SERVER_TASKS_GRADIDO_TASK
|