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

Go to the source code of this file.

Functions

 PyCallable_Make_InnerDispatcher (MovementService) MovementService
 
 PyCallable_Make_InnerDispatcher (UserService) UserService
 

Function Documentation

PyCallable_Make_InnerDispatcher ( MovementService  )

Definition at line 31 of file UserService.cpp.

References m_dispatch, and PyCallable_REG_CALL.

34 : PyService(mgr, "movementServer"),
35 m_dispatch(new Dispatcher(this))
36 {
37  _SetCallDispatcher(m_dispatch);
38 
39  PyCallable_REG_CALL(MovementService, ResolveNodeID);
40 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78
PyCallable_Make_InnerDispatcher ( UserService  )

Definition at line 54 of file UserService.cpp.

References m_dispatch, and PyCallable_REG_CALL.

57 : PyService(mgr, "userSvc"),
58  m_dispatch(new Dispatcher(this))
59 {
60  _SetCallDispatcher(m_dispatch);
61 
62  PyCallable_REG_CALL(UserService, GetRedeemTokens);
63  PyCallable_REG_CALL(UserService, ReverseRedeem);
64  PyCallable_REG_CALL(UserService, GetCreateDate);
65  PyCallable_REG_CALL(UserService, ReportISKSpammer);
66  PyCallable_REG_CALL(UserService, ReportBot);
67  PyCallable_REG_CALL(UserService, ApplyPilotLicence);
68 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78