EvEmu  0.8.4
11 September 2021
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
MarketBot.h
Go to the documentation of this file.
1 
11 #ifndef EVEMU_MARKET_MARKETBOT_H_
12 #define EVEMU_MARKET_MARKETBOT_H_
13 
14 
15 #include "eve-compat.h"
16 #include "eve-common.h"
17 
18 #include "market/MarketBotMgr.h"
19 
20 class MarketBot
21 {
22 public:
23  MarketBot();
24  ~MarketBot() { /* do nothing here */ }
25 
26  void Init();
27  void Process();
28 
29 private:
31 };
32 
33 #endif // EVEMU_MARKET_MARKETBOT_H_
void Init()
Definition: MarketBot.cpp:22
bool m_initalized
Definition: MarketBot.h:30
void Process()
Definition: MarketBot.cpp:27
~MarketBot()
Definition: MarketBot.h:24