EvEmu  0.8.4
11 September 2021
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
AccountService.cpp File Reference
#include <boost/algorithm/string.hpp>
#include "eve-server.h"
#include "EntityList.h"
#include "PyServiceCD.h"
#include "StaticDataMgr.h"
#include "account/AccountService.h"
#include "cache/ObjCacheService.h"
#include "corporation/CorporationDB.h"
Include dependency graph for AccountService.cpp:

Go to the source code of this file.

Functions

 PyCallable_Make_InnerDispatcher (AccountService) AccountService
 

Function Documentation

PyCallable_Make_InnerDispatcher ( AccountService  )

Definition at line 52 of file AccountService.cpp.

References m_dispatch, and PyCallable_REG_CALL.

55 : PyService(mgr, "account"),
56  m_dispatch(new Dispatcher(this))
57 {
58  _SetCallDispatcher(m_dispatch);
59 
60  PyCallable_REG_CALL(AccountService, GetCashBalance);
61  PyCallable_REG_CALL(AccountService, GetEntryTypes);
64  PyCallable_REG_CALL(AccountService, GiveCashFromCorpAccount);
66  PyCallable_REG_CALL(AccountService, GetJournalForAccounts);
67  PyCallable_REG_CALL(AccountService, GetWalletDivisionsInfo);
68  PyCallable_REG_CALL(AccountService, GetDefaultContactCost);
69  PyCallable_REG_CALL(AccountService, SetContactCost);
70 }
Dispatcher *const m_dispatch
#define PyCallable_REG_CALL(c, m)
Definition: PyServiceCD.h:78