AzerothCore 3.3.5a
OpenSource WoW Emulator
Loading...
Searching...
No Matches
lfg::LfgUpdateData Struct Reference

#include "LFGMgr.h"

Public Member Functions

 LfgUpdateData (LfgUpdateType _type=LFG_UPDATETYPE_DEFAULT)
 
 LfgUpdateData (LfgUpdateType _type, LfgDungeonSet _dungeons, std::string _comment)
 
 LfgUpdateData (LfgUpdateType _type, LfgState _state, LfgDungeonSet _dungeons, std::string _comment="")
 

Public Attributes

LfgUpdateType updateType
 
LfgState state {LFG_STATE_NONE}
 
LfgDungeonSet dungeons
 
std::string comment
 

Detailed Description

Constructor & Destructor Documentation

◆ LfgUpdateData() [1/3]

lfg::LfgUpdateData::LfgUpdateData ( LfgUpdateType  _type = LFG_UPDATETYPE_DEFAULT)
inline
291: updateType(_type), comment("") { }
LfgUpdateType updateType
Definition: LFGMgr.h:297
std::string comment
Definition: LFGMgr.h:300

◆ LfgUpdateData() [2/3]

lfg::LfgUpdateData::LfgUpdateData ( LfgUpdateType  _type,
LfgDungeonSet  _dungeons,
std::string  _comment 
)
inline
292 :
293 updateType(_type), state(LFG_STATE_NONE), dungeons(std::move(_dungeons)), comment(std::move(_comment)) { }
@ LFG_STATE_NONE
Definition: LFG.h:71
LfgDungeonSet dungeons
Definition: LFGMgr.h:299
LfgState state
Definition: LFGMgr.h:298

◆ LfgUpdateData() [3/3]

lfg::LfgUpdateData::LfgUpdateData ( LfgUpdateType  _type,
LfgState  _state,
LfgDungeonSet  _dungeons,
std::string  _comment = "" 
)
inline
294 :
295 updateType(_type), state(_state), dungeons(std::move(_dungeons)), comment(std::move(_comment)) { }

Member Data Documentation

◆ comment

std::string lfg::LfgUpdateData::comment

◆ dungeons

◆ state

◆ updateType