EvEmu  0.8.4
11 September 2021
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
MarketBot Class Reference

#include "MarketBot.h"

Public Member Functions

 ~MarketBot ()
 
MarketBotMgr.h

system for automating/emulating buy and sell orders on the market. idea and some code taken from AuctionHouseBot - Copyright (C) 2008-2014 TrinityCore http://www.trinitycore.org/ : Allan

Date
: 10 August 2016
 MarketBot ()
 
void Init ()
 
void Process ()
 

Private Attributes

bool m_initalized
 

Detailed Description

Definition at line 20 of file MarketBot.h.

Constructor & Destructor Documentation

MarketBot::MarketBot ( )

Definition at line 17 of file MarketBot.cpp.

References m_initalized.

18 {
19  m_initalized = false;
20 }
bool m_initalized
Definition: MarketBot.h:30
MarketBot::~MarketBot ( )
inline

Definition at line 24 of file MarketBot.h.

24 { /* do nothing here */ }

Member Function Documentation

void MarketBot::Init ( )

Definition at line 22 of file MarketBot.cpp.

References m_initalized.

23 {
24  m_initalized = false;
25 }
bool m_initalized
Definition: MarketBot.h:30
void MarketBot::Process ( )

Definition at line 27 of file MarketBot.cpp.

References m_initalized.

28 {
29  if (!m_initalized)
30  return;
31 }
bool m_initalized
Definition: MarketBot.h:30

Member Data Documentation

bool MarketBot::m_initalized
private

Definition at line 30 of file MarketBot.h.

Referenced by Init(), MarketBot(), and Process().


The documentation for this class was generated from the following files: