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

Go to the source code of this file.

Functions

 PyCallable_Make_InnerDispatcher (CorpBookmarkMgr) CorpBookmarkMgr
 

Function Documentation

PyCallable_Make_InnerDispatcher ( CorpBookmarkMgr  )

Definition at line 41 of file CorpBookmarkMgr.cpp.

References m_dispatch, and PyCallable_REG_CALL.

44 : PyService(mgr, "corpBookmarkMgr"),
45  m_dispatch(new Dispatcher(this))
46 {
47  _SetCallDispatcher(m_dispatch);
48 
49  PyCallable_REG_CALL(CorpBookmarkMgr, GetBookmarks);
50  PyCallable_REG_CALL(CorpBookmarkMgr, UpdateBookmark);
51  PyCallable_REG_CALL(CorpBookmarkMgr, UpdatePlayerBookmark);
52  PyCallable_REG_CALL(CorpBookmarkMgr, MoveBookmarksToFolder);
53  PyCallable_REG_CALL(CorpBookmarkMgr, CreateFolder);
54  PyCallable_REG_CALL(CorpBookmarkMgr, UpdateFolder);
55  PyCallable_REG_CALL(CorpBookmarkMgr, CopyBookmarks);
56  PyCallable_REG_CALL(CorpBookmarkMgr, DeleteFolder);
57  PyCallable_REG_CALL(CorpBookmarkMgr, MoveFoldersToDB);
58  PyCallable_REG_CALL(CorpBookmarkMgr, DeleteBookmarks);
59 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78