EvEmu  0.8.4
11 September 2021
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
eve-server.h
Go to the documentation of this file.
1 /*
2  ------------------------------------------------------------------------------------
3  LICENSE:
4  ------------------------------------------------------------------------------------
5  This file is part of EVEmu: EVE Online Server Emulator
6  Copyright 2006 - 2021 The EVEmu Team
7  For the latest information visit https://evemu.dev
8  ------------------------------------------------------------------------------------
9  This program is free software; you can redistribute it and/or modify it under
10  the terms of the GNU Lesser General Public License as published by the Free Software
11  Foundation; either version 2 of the License, or (at your option) any later
12  version.
13 
14  This program is distributed in the hope that it will be useful, but WITHOUT
15  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
17 
18  You should have received a copy of the GNU Lesser General Public License along with
19  this program; if not, write to the Free Software Foundation, Inc., 59 Temple
20  Place - Suite 330, Boston, MA 02111-1307, USA, or go to
21  http://www.gnu.org/copyleft/lesser.txt.
22  ------------------------------------------------------------------------------------
23  Author: Zhur
24  Updates: Allan (updated dependency loading order)
25 */
26 
27 #ifndef __EVE_SERVER_H__INCL__
28 #define __EVE_SERVER_H__INCL__
29 
30 /************************************************************************/
31 /* eve-common includes (also includes eve-core.h) */
32 /************************************************************************/
33 #include "eve-common.h"
34 
35 /************************************************************************/
36 /* eve-server includes */
37 /************************************************************************/
38 // profile
39 #include "Profiler.h"
40 // auth
41 #include "auth/PasswordModule.h"
42 // cache
43 #include "cache/CachedObjectMgr.h"
44 // database
45 #include "database/EVEDBUtils.h"
46 // destiny
47 #include "destiny/DestinyBinDump.h"
48 //#include "destiny/DestinyStructs.h"
49 // network
51 #include "network/EVETCPServer.h"
52 #include "network/EVEPktDispatch.h"
53 #include "network/EVESession.h"
54 // marshal
55 #include "marshal/EVEMarshal.h"
58 #include "marshal/EVEUnmarshal.h"
59 
60 // packets
61 // TODO work on moving these OUT of this file
62 #include "packets/AccountPkts.h"
63 // #include "packets/Bookmarks.h"
64 // #include "packets/CorporationPkts.h"
65 #include "packets/Crypto.h"
66 #include "packets/Character.h"
67 #include "packets/Destiny.h"
68 #include "packets/DogmaIM.h"
69 // #include "packets/Fleet.h"
70 #include "packets/General.h"
71 #include "packets/Inventory.h"
72 // #include "packets/Language.h"
73 // #include "packets/LSCPkts.h"
74 // #include "packets/Manufacturing.h"
75 // #include "packets/Market.h"
76 #include "packets/Mail.h"
77 // #include "packets/Map.h"
78 // #include "packets/Missions.h"
79 #include "packets/ObjectCaching.h"
80 // #include "packets/Sovereignty.h"
81 // #include "packets/Standing.h"
82 // #include "packets/Scan.h"
83 // #include "packets/Trade.h"
84 #include "packets/Tutorial.h"
85 #include "packets/Wallet.h"
86 
87 // python
88 #include "python/PyVisitor.h"
89 #include "python/PyRep.h"
90 #include "python/PyPacket.h"
91 #include "python/PyDumpVisitor.h"
92 #include "python/PyLookupDump.h"
93 #include "python/PyXMLGenerator.h"
96 #include "python/classes/PyUtils.h"
97 // Common Enums
99 // pointer references for all classes
100 #include "inventory/ItemRef.h"
101 // tables
102 #include "tables/invCategories.h"
103 #include "tables/invGroups.h"
104 #include "tables/invTypes.h"
105 // threading
106 #include "threading/Mutex.h"
107 // utils
108 #include "utils/EVEUtils.h"
109 #include "utils/XMLParserEx.h"
110 
111 
112 #endif /* !__EVE_SERVER_H__INCL__ */