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

Go to the source code of this file.

Functions

WorldSpaceServer.cpp

Specific Class for

: Allan

Date
: 31August17
 PyCallable_Make_InnerDispatcher (WorldSpaceServer) WorldSpaceServer
 

Function Documentation

PyCallable_Make_InnerDispatcher ( WorldSpaceServer  )

Definition at line 18 of file WorldSpaceServer.cpp.

References m_dispatch, and PyCallable_REG_CALL.

21 : PyService(mgr, "worldSpaceServer"),
22 m_dispatch(new Dispatcher(this))
23 {
24  _SetCallDispatcher(m_dispatch);
25 
26  PyCallable_REG_CALL(WorldSpaceServer, GetWorldSpaceTypeIDFromWorldSpaceID);
27  PyCallable_REG_CALL(WorldSpaceServer, GetWorldSpaceMachoAddress);
28 
29  /*
30  ws = world.GetWorldSpace(worldSpaceTypeID)
31  return ws.GetDistrictID()
32 
33 
34  currentRevs = sm.GetService('jessicaWorldSpaceClient').GetWorldSpace(self.id).GetWorldSpaceSpawnRevisionsList()
35  */
36 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78