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

Go to the source code of this file.

Functions

 PyCallable_Make_InnerDispatcher (TutorialService) TutorialService
 

Function Documentation

PyCallable_Make_InnerDispatcher ( TutorialService  )

Definition at line 31 of file TutorialService.cpp.

References m_dispatch, and PyCallable_REG_CALL.

34 : PyService(mgr, "tutorialSvc"),
35  m_dispatch(new Dispatcher(this))
36 {
37  _SetCallDispatcher(m_dispatch);
38 
39  PyCallable_REG_CALL(TutorialService, GetTutorials);
40  PyCallable_REG_CALL(TutorialService, GetTutorialInfo);
41  PyCallable_REG_CALL(TutorialService, GetTutorialAgents);
42  PyCallable_REG_CALL(TutorialService, GetCriterias);
43  PyCallable_REG_CALL(TutorialService, GetCategories);
44  PyCallable_REG_CALL(TutorialService, GetContextHelp);
45  PyCallable_REG_CALL(TutorialService, GetCharacterTutorialState);
46  PyCallable_REG_CALL(TutorialService, GetTutorialsAndConnections);
47  PyCallable_REG_CALL(TutorialService, GetCareerAgents);
48 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78