TrinityCore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
WorldPackets::Chat::ChatPlayerNotfound Class Referencefinal

#include <ChatPackets.h>

Public Member Functions

 ChatPlayerNotfound (std::string const &name)
 
WorldPacket constWrite () override
 
- Public Member Functions inherited from WorldPackets::ServerPacket
 ServerPacket (OpcodeServer opcode, size_t initialSize=200, ConnectionType connection=CONNECTION_TYPE_DEFAULT)
 
void Read () overridefinal
 
void Clear ()
 
WorldPacket && Move ()
 
OpcodeServer GetOpcode () const
 
- Public Member Functions inherited from WorldPackets::Packet
 Packet (WorldPacket &&worldPacket)
 
virtual ~Packet ()=default
 
 Packet (Packet const &right)=delete
 
Packetoperator= (Packet const &right)=delete
 
WorldPacket constGetRawPacket () const
 
size_t GetSize () const
 
ConnectionType GetConnection () const
 

Public Attributes

std::string Name
 

Additional Inherited Members

- Protected Attributes inherited from WorldPackets::Packet
WorldPacket _worldPacket
 

Constructor & Destructor Documentation

WorldPackets::Chat::ChatPlayerNotfound::ChatPlayerNotfound ( std::string const name)
inline
241 : ServerPacket(SMSG_CHAT_PLAYER_NOTFOUND, 2 + name.size()), Name(name) { }
ServerPacket(OpcodeServer opcode, size_t initialSize=200, ConnectionType connection=CONNECTION_TYPE_DEFAULT)
Definition: Packet.h:49
std::string Name
Definition: ChatPackets.h:245
Definition: Opcodes.h:904

Member Function Documentation

WorldPacket const * WorldPackets::Chat::ChatPlayerNotfound::Write ( )
overridevirtual

Implements WorldPackets::Packet.

231 {
232  _worldPacket.WriteBits(Name.length(), 9);
234 
236 
237  return &_worldPacket;
238 }
std::string Name
Definition: ChatPackets.h:245
void FlushBits()
Definition: ByteBuffer.h:150
WorldPacket _worldPacket
Definition: Packet.h:43
void WriteString(std::string const &str)
Definition: ByteBuffer.h:540
void WriteBits(T value, int32 bits)
Definition: ByteBuffer.h:198

+ Here is the call graph for this function:

Member Data Documentation

std::string WorldPackets::Chat::ChatPlayerNotfound::Name

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