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

Go to the source code of this file.

Classes

class  InsuranceBound
 

Functions

 PyCallable_Make_InnerDispatcher (InsuranceService) InsuranceService
 

Function Documentation

PyCallable_Make_InnerDispatcher ( InsuranceService  )

Definition at line 78 of file InsuranceService.cpp.

References m_dispatch, and PyCallable_REG_CALL.

81 : PyService(mgr, "insuranceSvc"),
82  m_dispatch(new Dispatcher(this))
83 {
84  _SetCallDispatcher(m_dispatch);
85 
86  PyCallable_REG_CALL(InsuranceService, GetContractForShip);
87  PyCallable_REG_CALL(InsuranceService, GetInsurancePrice);
88  //SetSessionCheck?
89 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78