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

Go to the source code of this file.

Functions

 PyCallable_Make_InnerDispatcher (CalendarMgrService) CalendarMgrService
 

Function Documentation

PyCallable_Make_InnerDispatcher ( CalendarMgrService  )

Definition at line 33 of file CalendarMgrService.cpp.

References m_dispatch, and PyCallable_REG_CALL.

36 : PyService(mgr, "calendarMgr"),
37  m_dispatch(new Dispatcher(this))
38 {
39  _SetCallDispatcher(m_dispatch);
40 
41  PyCallable_REG_CALL(CalendarMgrService, CreatePersonalEvent);
42  PyCallable_REG_CALL(CalendarMgrService, CreateCorporationEvent);
43  PyCallable_REG_CALL(CalendarMgrService, CreateAllianceEvent);
44  PyCallable_REG_CALL(CalendarMgrService, UpdateEventParticipants);
45  PyCallable_REG_CALL(CalendarMgrService, EditPersonalEvent);
46  PyCallable_REG_CALL(CalendarMgrService, EditCorporationEvent);
47  PyCallable_REG_CALL(CalendarMgrService, EditAllianceEvent);
48  PyCallable_REG_CALL(CalendarMgrService, GetResponsesForCharacter);
49  PyCallable_REG_CALL(CalendarMgrService, SendEventResponse);
51  PyCallable_REG_CALL(CalendarMgrService, GetResponsesToEvent);
52 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78