EvEmu  0.8.4
11 September 2021
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
PyServiceCD.h File Reference
#include "Client.h"
#include "PyCallable.h"
Include dependency graph for PyServiceCD.h:

Go to the source code of this file.

Classes

class  PyCallableDispatcher< Svc >
 

Macros

#define PyCallable_REG_CALL(c, m)   m_dispatch->RegisterCall(#m, &c::Handle_##m);
 
#define PyCallable_Make_Dispatcher(objname)
 
#define PyCallable_Make_InnerDispatcher(objname)
 

Macro Definition Documentation

#define PyCallable_Make_Dispatcher (   objname)
Value:
class Dispatcher : public PyCallableDispatcher<objname> { \
public: \
Dispatcher(objname *c) : PyCallableDispatcher<objname>(c) {} \
};

Definition at line 81 of file PyServiceCD.h.

Referenced by PyCallable_Make_InnerDispatcher().

#define PyCallable_Make_InnerDispatcher (   objname)
Value:
class objname::Dispatcher \
: public PyCallableDispatcher<objname> { \
public: \
Dispatcher(objname *c) \
};

Definition at line 87 of file PyServiceCD.h.