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

Go to the source code of this file.

Functions

 PyCallable_Make_InnerDispatcher (CorpMgrService) CorpMgrService
 

Function Documentation

PyCallable_Make_InnerDispatcher ( CorpMgrService  )

Definition at line 33 of file CorpMgrService.cpp.

References m_dispatch, and PyCallable_REG_CALL.

36 : PyService(mgr, "corpmgr"),
37  m_dispatch(new Dispatcher(this))
38 {
39  _SetCallDispatcher(m_dispatch);
40 
41  PyCallable_REG_CALL(CorpMgrService, GetPublicInfo);
42  PyCallable_REG_CALL(CorpMgrService, GetCorporations);
43  PyCallable_REG_CALL(CorpMgrService, GetAssetInventory);
44  PyCallable_REG_CALL(CorpMgrService, GetCorporationStations);
45  PyCallable_REG_CALL(CorpMgrService, GetCorporationIDForCharacter);
46  PyCallable_REG_CALL(CorpMgrService, GetAssetInventoryForLocation);
47  PyCallable_REG_CALL(CorpMgrService, SearchAssets);
48  PyCallable_REG_CALL(CorpMgrService, AuditMember);
49 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78