EvEmu  0.8.4
11 September 2021
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
PosMgr.cpp File Reference
#include "eve-server.h"
#include "PyBoundObject.h"
#include "PyServiceCD.h"
#include "planet/Moon.h"
#include "pos/PosMgr.h"
#include "pos/Array.h"
#include "pos/Battery.h"
#include "pos/Structure.h"
#include "pos/Tower.h"
#include "pos/Weapon.h"
#include "system/SystemManager.h"
Include dependency graph for PosMgr.cpp:

Go to the source code of this file.

Classes

class  PosMgrBound
 

Functions

PosMgr.cpp

Class for pos manager calls.

: Allan

Date
: 28 December 17
 PyCallable_Make_InnerDispatcher (PosMgr) PosMgr
 

Function Documentation

PyCallable_Make_InnerDispatcher ( PosMgr  )

Definition at line 117 of file PosMgr.cpp.

References m_dispatch, and PyCallable_REG_CALL.

120 : PyService(mgr, "posMgr"),
121 m_dispatch(new Dispatcher(this))
122 {
123  _SetCallDispatcher(m_dispatch);
124 
125  PyCallable_REG_CALL(PosMgr, GetJumpArrays);
126  PyCallable_REG_CALL(PosMgr, GetControlTowers);
127  PyCallable_REG_CALL(PosMgr, GetControlTowerFuelRequirements);
128 }
Dispatcher *const m_dispatch
Definition: PosMgr.h:16
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78