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

Go to the source code of this file.

Functions

 PyCallable_Make_InnerDispatcher (VoucherService) VoucherService
 
 PyCallable_Make_InnerDispatcher (VoucherBound) VoucherBound
 

Function Documentation

PyCallable_Make_InnerDispatcher ( VoucherService  )

Definition at line 32 of file Voucher.cpp.

References m_dispatch, and PyCallable_REG_CALL.

35 : PyService(mgr, "voucher"),
36  m_dispatch(new Dispatcher(this))
37 {
38  _SetCallDispatcher(m_dispatch);
39 
41 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78
PyCallable_Make_InnerDispatcher ( VoucherBound  )

Definition at line 78 of file Voucher.cpp.

References m_dispatch, and PyCallable_REG_CALL.

81 : PyBoundObject(mgr),
82 m_dispatch(new Dispatcher(this))
83 {
84  _SetCallDispatcher(m_dispatch);
85 
86  m_strBoundObjectName = "VoucherBound";
87 
88  m_itemRef = itemRef;
89 
90  PyCallable_REG_CALL(VoucherBound, GetDescription);
91 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78