EvEmu  0.8.4
11 September 2021
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
AgentMgrService.cpp File Reference
#include "eve-server.h"
#include "EntityList.h"
#include "PyBoundObject.h"
#include "PyServiceCD.h"
#include "StaticDataMgr.h"
#include "cache/ObjCacheService.h"
#include "agents/Agent.h"
#include "agents/AgentBound.h"
#include "agents/AgentMgrService.h"
#include "missions/MissionDataMgr.h"
Include dependency graph for AgentMgrService.cpp:

Go to the source code of this file.

Functions

 PyCallable_Make_InnerDispatcher (AgentMgrService) AgentMgrService
 
 PyCallable_Make_InnerDispatcher (EpicArcService) EpicArcService
 

Function Documentation

PyCallable_Make_InnerDispatcher ( AgentMgrService  )

Definition at line 62 of file AgentMgrService.cpp.

References m_dispatch, and PyCallable_REG_CALL.

65 : PyService(mgr, "agentMgr"),
66  m_dispatch(new Dispatcher(this))
67 {
68  _SetCallDispatcher(m_dispatch);
69 
71  PyCallable_REG_CALL(AgentMgrService, GetCareerAgents);
72  PyCallable_REG_CALL(AgentMgrService, GetMyJournalDetails);
73  PyCallable_REG_CALL(AgentMgrService, GetSolarSystemOfAgent);
74  PyCallable_REG_CALL(AgentMgrService, GetMyEpicJournalDetails);
75 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78
PyCallable_Make_InnerDispatcher ( EpicArcService  )

Definition at line 298 of file AgentMgrService.cpp.

References m_dispatch, and PyCallable_REG_CALL.

301 : PyService(mgr, "epicArcStatus"),
302  m_dispatch(new Dispatcher(this))
303 {
304  _SetCallDispatcher(m_dispatch);
305 
306  PyCallable_REG_CALL(EpicArcService, AgentHasEpicMissionsForCharacter);
307 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78