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

Go to the source code of this file.

Functions

 PyCallable_Make_InnerDispatcher (LPService) LPService
 

Function Documentation

PyCallable_Make_InnerDispatcher ( LPService  )

Definition at line 31 of file LPService.cpp.

References m_dispatch, and PyCallable_REG_CALL.

34 : PyService(mgr, "LPSvc"),
35  m_dispatch(new Dispatcher(this))
36 {
37  _SetCallDispatcher(m_dispatch);
38 
39  PyCallable_REG_CALL(LPService, TakeOffer);
40  PyCallable_REG_CALL(LPService, ExchangeConcordLP);
41  PyCallable_REG_CALL(LPService, GetLPExchangeRates);
42  PyCallable_REG_CALL(LPService, GetLPsForCharacter);
43  PyCallable_REG_CALL(LPService, GetLPForCharacterCorp);
44  PyCallable_REG_CALL(LPService, GetAvailableOffersFromCorp);
45 
46 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78