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

Go to the source code of this file.

Functions

 PyCallable_Make_InnerDispatcher (ScenarioService) ScenarioService
 

Function Documentation

PyCallable_Make_InnerDispatcher ( ScenarioService  )

Definition at line 32 of file ScenarioService.cpp.

References m_dispatch, and PyCallable_REG_CALL.

35 : PyService(mgr, "scenario"),
36  m_dispatch(new Dispatcher(this))
37 {
38  _SetCallDispatcher(m_dispatch);
39 
44  PyCallable_REG_CALL(ScenarioService, GetDunObjects);
45  PyCallable_REG_CALL(ScenarioService, GetSelObjects);
46  PyCallable_REG_CALL(ScenarioService, IsSelectedByObjID);
47  PyCallable_REG_CALL(ScenarioService, DuplicateSelection);
48  PyCallable_REG_CALL(ScenarioService, SetSelectionByID);
49  PyCallable_REG_CALL(ScenarioService, SetSelectedRadius);
51  PyCallable_REG_CALL(ScenarioService, RotateSelected);
52  PyCallable_REG_CALL(ScenarioService, JitterSelection);
53  PyCallable_REG_CALL(ScenarioService, ArrangeSelection);
54  PyCallable_REG_CALL(ScenarioService, DeleteSelected);
55  PyCallable_REG_CALL(ScenarioService, RefreshSelection);
56 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78