CNetMessage::operator=

Assignment operators

Synopses

Declared in <net.h>

Deleted copy assignment; messages are move-only.

CNetMessage&
operator=(CNetMessage const& other) = delete;
» more...

Move-assign a message.

constexpr
CNetMessage&
operator=(CNetMessage&& other) = default;
» more...

Return Value

a reference to this message.

Parameters

NameDescription
otherthe message that would be copied from.