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

Go to the source code of this file.

Functions

 PyCallable_Make_InnerDispatcher (BillMgr) BillMgr
 

Function Documentation

PyCallable_Make_InnerDispatcher ( BillMgr  )

Definition at line 34 of file BillMgr.cpp.

References m_dispatch, and PyCallable_REG_CALL.

37 : PyService(mgr, "billMgr"),
38  m_dispatch(new Dispatcher(this)) {
39  _SetCallDispatcher(m_dispatch);
40 
41  PyCallable_REG_CALL(BillMgr, CharPayBill);
42  PyCallable_REG_CALL(BillMgr, CharGetBills);
43  PyCallable_REG_CALL(BillMgr, CharGetBillsReceivable);
44  PyCallable_REG_CALL(BillMgr, GetBillTypes);
45  PyCallable_REG_CALL(BillMgr, PayCorporationBill);
46  PyCallable_REG_CALL(BillMgr, GetCorporationBills);
47  PyCallable_REG_CALL(BillMgr, GetCorporationBillsReceivable);
48  PyCallable_REG_CALL(BillMgr, GetAutomaticPaySettings);
49  PyCallable_REG_CALL(BillMgr, SendAutomaticPaySettings);
50 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78