| 126 | CSerializedNetMsg& operator=(const CSerializedNetMsg&) = delete; |
| 127 | |
| 128 | CSerializedNetMsg Copy() const |
| 129 | { |
| 130 | CSerializedNetMsg copy; |
| 131 | copy.data = data; |
| 132 | copy.m_type = m_type; |
| 133 | return copy; |
| 134 | } |
| 135 | |
| 136 | std::vector<unsigned char> data; |
| 137 | std::string m_type; |
no outgoing calls