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

Go to the source code of this file.

Functions

 PyCallable_Make_InnerDispatcher (FactoryService) FactoryService
 

Function Documentation

PyCallable_Make_InnerDispatcher ( FactoryService  )

Definition at line 44 of file FactoryService.cpp.

References m_dispatch, and PyCallable_REG_CALL.

47 : PyService(mgr, "factory"),
48  m_dispatch(new Dispatcher(this))
49 {
50  _SetCallDispatcher(m_dispatch);
51 
52  PyCallable_REG_CALL(FactoryService, GetBlueprintAttributes);
53  PyCallable_REG_CALL(FactoryService, GetMaterialsForTypeWithActivity);
54  PyCallable_REG_CALL(FactoryService, GetMaterialCompositionOfItemType);
55  PyCallable_REG_CALL(FactoryService, GetBlueprintInformationAtLocation);
56  PyCallable_REG_CALL(FactoryService, GetBlueprintInformationAtLocationWithFlag);
57 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78