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

Go to the source code of this file.

Functions

 PyCallable_Make_InnerDispatcher (ConfigService) ConfigService
 

Function Documentation

PyCallable_Make_InnerDispatcher ( ConfigService  )

Definition at line 32 of file ConfigService.cpp.

References m_dispatch, and PyCallable_REG_CALL.

35 : PyService(mgr, "config"),
36  m_dispatch(new Dispatcher(this))
37 {
38  _SetCallDispatcher(m_dispatch);
39 
40  PyCallable_REG_CALL(ConfigService, GetMultiOwnersEx);
41  PyCallable_REG_CALL(ConfigService, GetMultiLocationsEx);
42  PyCallable_REG_CALL(ConfigService, GetMultiStationEx);
43  PyCallable_REG_CALL(ConfigService, GetMultiAllianceShortNamesEx);
44  PyCallable_REG_CALL(ConfigService, GetMultiCorpTickerNamesEx);
47  PyCallable_REG_CALL(ConfigService, GetMapOffices);
48  PyCallable_REG_CALL(ConfigService, GetMapObjects);
49  PyCallable_REG_CALL(ConfigService, GetMapConnections);
50  PyCallable_REG_CALL(ConfigService, GetMultiGraphicsEx);
51  PyCallable_REG_CALL(ConfigService, GetMultiInvTypesEx);
52  PyCallable_REG_CALL(ConfigService, GetStationSolarSystemsByOwner);
53  PyCallable_REG_CALL(ConfigService, GetCelestialStatistic);
54  PyCallable_REG_CALL(ConfigService, GetDynamicCelestials);
55  PyCallable_REG_CALL(ConfigService, GetMapLandmarks);
56  PyCallable_REG_CALL(ConfigService, SetMapLandmarks);
57 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78