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

Go to the source code of this file.

Functions

 PyCallable_Make_InnerDispatcher (AuthService) AuthService
 

Function Documentation

PyCallable_Make_InnerDispatcher ( AuthService  )

Definition at line 32 of file AuthService.cpp.

References m_dispatch, and PyCallable_REG_CALL.

35 : PyService(mgr, "authentication"),
36 m_dispatch(new Dispatcher(this))
37 {
38  _SetCallDispatcher(m_dispatch);
39 
41  PyCallable_REG_CALL(AuthService, GetPostAuthenticationMessage);
42  PyCallable_REG_CALL(AuthService, AmUnderage);
43  PyCallable_REG_CALL(AuthService, AccruedTime);
44  PyCallable_REG_CALL(AuthService, SetLanguageID);
45 
46 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78