EvEmu  0.8.4
11 September 2021
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
NotificationMgrService.cpp File Reference
#include "eve-server.h"
#include "PyServiceCD.h"
#include "mail/NotificationMgrService.h"
Include dependency graph for NotificationMgrService.cpp:

Go to the source code of this file.

Functions

 PyCallable_Make_InnerDispatcher (NotificationMgrService) NotificationMgrService
 

Function Documentation

PyCallable_Make_InnerDispatcher ( NotificationMgrService  )

Definition at line 31 of file NotificationMgrService.cpp.

References m_dispatch, and PyCallable_REG_CALL.

36 : PyService(mgr, "notificationMgr"),
37  m_dispatch(new Dispatcher(this))
38 {
39  _SetCallDispatcher(m_dispatch);
40 
43  PyCallable_REG_CALL(NotificationMgrService, MarkGroupAsProcessed);
44  PyCallable_REG_CALL(NotificationMgrService, MarkAllAsProcessed);
46  PyCallable_REG_CALL(NotificationMgrService, DeleteGroupNotifications);
47  PyCallable_REG_CALL(NotificationMgrService, DeleteAllNotifications);
48  PyCallable_REG_CALL(NotificationMgrService, DeleteNotifications);
49 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78