| 299 | |
| 300 | |
| 301 | void NetMessage::packStdString(const std::string& str) { |
| 302 | const size_t packSize = nboStdStringPackSize(str); |
| 303 | checkData(packSize); |
| 304 | nboPackStdString(getWriteBuffer(), str); |
| 305 | dataSize += packSize; |
| 306 | } |
| 307 | |
| 308 | |
| 309 | //============================================================================// |
no test coverage detected