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

Go to the source code of this file.

Functions

 PyCallable_Make_InnerDispatcher (LanguageService) LanguageService
 

Function Documentation

PyCallable_Make_InnerDispatcher ( LanguageService  )

Definition at line 63 of file LanguageService.cpp.

References m_dispatch, and PyCallable_REG_CALL.

66 : PyService(mgr, "languageSvc"),
67  m_dispatch(new Dispatcher(this))
68 {
69  _SetCallDispatcher(m_dispatch);
70 
71  PyCallable_REG_CALL(LanguageService, GetLanguages);
72  PyCallable_REG_CALL(LanguageService, GetTextsForGroup);
73 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78