Constructors
Declared in <net.h>
Construct an empty serialized message.
constexpr
CSerializedNetMsg() = default;
» more...
Deleted copy constructor; copies must go through Copy().
CSerializedNetMsg(CSerializedNetMsg const& msg) = delete;
» more...
Move-construct from another serialized message.
constexpr
CSerializedNetMsg(CSerializedNetMsg&& other) = default;
» more...
| Name | Description |
|---|---|
| other | the message to move from. |