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

Go to the source code of this file.

Functions

 PyCallable_Make_InnerDispatcher (MailMgrService) MailMgrService
 

Function Documentation

PyCallable_Make_InnerDispatcher ( MailMgrService  )

Definition at line 33 of file MailMgrService.cpp.

References m_dispatch, and PyCallable_REG_CALL.

36 : PyService(mgr, "mailMgr"),
37  m_dispatch(new Dispatcher(this)),
38  m_db(new MailDB())
39 {
40  _SetCallDispatcher(m_dispatch);
42  PyCallable_REG_CALL(MailMgrService, PrimeOwners);
44  PyCallable_REG_CALL(MailMgrService, GetMailHeaders);
45  PyCallable_REG_CALL(MailMgrService, MoveToTrash);
46  PyCallable_REG_CALL(MailMgrService, MoveFromTrash);
47  PyCallable_REG_CALL(MailMgrService, MarkAsUnread);
49  PyCallable_REG_CALL(MailMgrService, MoveAllToTrash);
50  PyCallable_REG_CALL(MailMgrService, MoveToTrashByLabel);
51  PyCallable_REG_CALL(MailMgrService, MoveToTrashByList);
52  PyCallable_REG_CALL(MailMgrService, MarkAllAsUnread);
53  PyCallable_REG_CALL(MailMgrService, MarkAsUnreadByLabel);
54  PyCallable_REG_CALL(MailMgrService, MarkAsUnreadByList);
55  PyCallable_REG_CALL(MailMgrService, MarkAllAsRead);
56  PyCallable_REG_CALL(MailMgrService, MarkAsReadByLabel);
57  PyCallable_REG_CALL(MailMgrService, MarkAsReadByList);
58  PyCallable_REG_CALL(MailMgrService, MoveAllFromTrash);
62  PyCallable_REG_CALL(MailMgrService, AssignLabels);
63  PyCallable_REG_CALL(MailMgrService, RemoveLabels);
64 
65  // implemented
68  PyCallable_REG_CALL(MailMgrService, CreateLabel);
69  PyCallable_REG_CALL(MailMgrService, DeleteLabel);
70 }
Dispatcher *const m_dispatch
Definition: MailDB.h:36
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78