EvEmu  0.8.4
11 September 2021
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Standing.cpp File Reference
Include dependency graph for Standing.cpp:

Go to the source code of this file.

Functions

 PyCallable_Make_InnerDispatcher (Standing) Standing
 

Function Documentation

PyCallable_Make_InnerDispatcher ( Standing  )

Definition at line 44 of file Standing.cpp.

References m_dispatch, and PyCallable_REG_CALL.

47 : PyService(mgr, "standing2"),
48  m_dispatch(new Dispatcher(this))
49 {
50  _SetCallDispatcher(m_dispatch);
51 
52  PyCallable_REG_CALL(Standing, GetSecurityRating);
53  PyCallable_REG_CALL(Standing, GetMyKillRights);
54  PyCallable_REG_CALL(Standing, GetCharStandings);
55  PyCallable_REG_CALL(Standing, GetCorpStandings);
56  PyCallable_REG_CALL(Standing, GetNPCNPCStandings);
57  PyCallable_REG_CALL(Standing, GetStandingTransactions);
58  PyCallable_REG_CALL(Standing, GetStandingCompositions);
59 
60 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78