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

Go to the source code of this file.

Classes

class  KeeperBound
 

Functions

 PyCallable_Make_InnerDispatcher (KeeperService) KeeperService
 

Function Documentation

PyCallable_Make_InnerDispatcher ( KeeperService  )

Definition at line 89 of file KeeperService.cpp.

References m_dispatch, and PyCallable_REG_CALL.

92 : PyService(mgr, "keeper"),
93  m_dispatch(new Dispatcher(this))
94 {
95  _SetCallDispatcher(m_dispatch);
96 
97  PyCallable_REG_CALL(KeeperService, GetLevelEditor);
98  PyCallable_REG_CALL(KeeperService, ActivateAccelerationGate);
99  PyCallable_REG_CALL(KeeperService, CanWarpToPathPlex);
100 
101  //sm.RemoteSvc('keeper').ClientBSDRevisionChange(action, schemaName, tableName, rowKeys, columnValues, reverting)
102 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78