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

Go to the source code of this file.

Functions

 PyCallable_Make_InnerDispatcher (BrowserLockdownService) BrowserLockdownService
 

Function Documentation

PyCallable_Make_InnerDispatcher ( BrowserLockdownService  )

Definition at line 34 of file BrowserLockdownSvc.cpp.

References m_dispatch, and PyCallable_REG_CALL.

37 : PyService(mgr, "browserLockdownSvc"),
38  m_dispatch(new Dispatcher(this))
39 {
40  _SetCallDispatcher(m_dispatch);
41 
42  PyCallable_REG_CALL(BrowserLockdownService, GetFlaggedSitesHash);
43  PyCallable_REG_CALL(BrowserLockdownService, GetFlaggedSitesList);
44  PyCallable_REG_CALL(BrowserLockdownService, GetDefaultHomePage);
45  PyCallable_REG_CALL(BrowserLockdownService, IsBrowserInLockdown);
46 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78