EvEmu  0.8.4
11 September 2021
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
FleetObject.h
Go to the documentation of this file.
1 
13 #ifndef EVEMU_SRC_FLEET_OBJ_H_
14 #define EVEMU_SRC_FLEET_OBJ_H_
15 
16 
17 #include "fleet/FleetManager.h"
18 
20  : public PyService
21 {
22 public:
24  ~FleetObject();
25 
26 protected:
27  class Dispatcher;
28  Dispatcher *const m_dispatch;
29 
30  PyCallable_DECL_CALL(CreateFleet);
31 
32  //overloaded in order to support bound objects:
33  virtual PyBoundObject *CreateBoundObject(Client *pClient, const PyRep *bind_args);
34 
35 private:
36 
37 
38 };
39 
40 #endif // EVEMU_SRC_FLEET_OBJ_H_
Base Python wire object.
Definition: PyRep.h:66
Dispatcher *const m_dispatch
Definition: FleetObject.h:27
FleetObject(PyServiceMgr *mgr)
Definition: Client.h:66
virtual PyBoundObject * CreateBoundObject(Client *pClient, const PyRep *bind_args)
Definition: FleetObject.cpp:35
PyCallable_DECL_CALL(CreateFleet)