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

Go to the source code of this file.

Functions

 PyCallable_Make_InnerDispatcher (CorporationService) CorporationService
 

Function Documentation

PyCallable_Make_InnerDispatcher ( CorporationService  )

Definition at line 34 of file CorporationService.cpp.

References m_dispatch, and PyCallable_REG_CALL.

37 : PyService(mgr, "corporationSvc"),
38  m_dispatch(new Dispatcher(this))
39 {
40  _SetCallDispatcher(m_dispatch);
41 
42  PyCallable_REG_CALL(CorporationService, GetFactionInfo);
44  PyCallable_REG_CALL(CorporationService, GetNPCDivisions);
45  PyCallable_REG_CALL(CorporationService, GetEmploymentRecord);
46  PyCallable_REG_CALL(CorporationService, GetRecruitmentAdsByCriteria);
47  PyCallable_REG_CALL(CorporationService, GetRecruitmentAdRegistryData);
48  PyCallable_REG_CALL(CorporationService, GetRecruitmentAdsForCorporation);
49 
50  PyCallable_REG_CALL(CorporationService, GetMedalsReceived);
51  PyCallable_REG_CALL(CorporationService, GetMedalDetails);
52  PyCallable_REG_CALL(CorporationService, GetAllCorpMedals);
54  PyCallable_REG_CALL(CorporationService, GiveMedalToCharacters);
55  PyCallable_REG_CALL(CorporationService, SetMedalStatus);
56  PyCallable_REG_CALL(CorporationService, GetMedalStatuses);
57  PyCallable_REG_CALL(CorporationService, GetRecipientsOfMedal);
58 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78