| 39 | mString = string; |
| 40 | } |
| 41 | virtual void pack(NetConnection* /*ps*/, BitStream *bstream) |
| 42 | { |
| 43 | bstream->writeInt(mIndex, ConnectionStringTable::EntryBitSize); |
| 44 | bstream->writeString(mString.getString()); |
| 45 | } |
| 46 | virtual void write(NetConnection* /*ps*/, BitStream *bstream) |
| 47 | { |
| 48 | bstream->writeInt(mIndex, ConnectionStringTable::EntryBitSize); |
nothing calls this directly
no test coverage detected