EvEmu  0.8.4
11 September 2021
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
CharMgrService.cpp File Reference
#include "eve-server.h"
#include "../../eve-common/EVE_Character.h"
#include "PyBoundObject.h"
#include "PyServiceCD.h"
#include "EntityList.h"
#include "account/AccountService.h"
#include "character/CharMgrService.h"
#include "packets/CorporationPkts.h"
Include dependency graph for CharMgrService.cpp:

Go to the source code of this file.

Classes

class  CharMgrBound
 

Functions

 PyCallable_Make_InnerDispatcher (CharMgrService) CharMgrService
 

Function Documentation

PyCallable_Make_InnerDispatcher ( CharMgrService  )

Definition at line 142 of file CharMgrService.cpp.

References m_dispatch, and PyCallable_REG_CALL.

145 : PyService(mgr, "charMgr"),
146  m_dispatch(new Dispatcher(this))
147 {
148  _SetCallDispatcher(m_dispatch);
149 
150  PyCallable_REG_CALL(CharMgrService, GetPublicInfo);
151  PyCallable_REG_CALL(CharMgrService, GetPublicInfo3);
152  PyCallable_REG_CALL(CharMgrService, GetPrivateInfo);
153  PyCallable_REG_CALL(CharMgrService, GetTopBounties);
154  PyCallable_REG_CALL(CharMgrService, AddToBounty);
155  PyCallable_REG_CALL(CharMgrService, GetContactList);
156  PyCallable_REG_CALL(CharMgrService, GetCloneTypeID);
157  PyCallable_REG_CALL(CharMgrService, GetHomeStation);
158  PyCallable_REG_CALL(CharMgrService, GetFactions);
159  PyCallable_REG_CALL(CharMgrService, SetActivityStatus);
160  PyCallable_REG_CALL(CharMgrService, GetSettingsInfo);
161  PyCallable_REG_CALL(CharMgrService, LogSettings);
162  PyCallable_REG_CALL(CharMgrService, GetCharacterDescription);
163  PyCallable_REG_CALL(CharMgrService, SetCharacterDescription);
164  PyCallable_REG_CALL(CharMgrService, GetPaperdollState);
167  PyCallable_REG_CALL(CharMgrService, AddOwnerNote);
168  PyCallable_REG_CALL(CharMgrService, GetOwnerNote);
169  PyCallable_REG_CALL(CharMgrService, GetOwnerNoteLabels);
170  PyCallable_REG_CALL(CharMgrService, AddContact);
171  PyCallable_REG_CALL(CharMgrService, EditContact);
172  PyCallable_REG_CALL(CharMgrService, DeleteContacts);
173  PyCallable_REG_CALL(CharMgrService, GetRecentShipKillsAndLosses);
174  PyCallable_REG_CALL(CharMgrService, BlockOwners);
175  PyCallable_REG_CALL(CharMgrService, UnblockOwners);
176  PyCallable_REG_CALL(CharMgrService, EditContactsRelationshipID);
177  PyCallable_REG_CALL(CharMgrService, GetImageServerLink);
178  //these 2 are for labels in PnP window;
180  PyCallable_REG_CALL(CharMgrService, CreateLabel);
181 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78