| 123 | } |
| 124 | |
| 125 | void setFromIndex(U32 newIndex) |
| 126 | { |
| 127 | if(index) |
| 128 | gNetStringTable->removeString(index); |
| 129 | index = newIndex; |
| 130 | } |
| 131 | |
| 132 | bool operator==(const NetStringHandle &s) const { return index == s.index; } |
| 133 | bool operator!=(const NetStringHandle &s) const { return index != s.index; } |
nothing calls this directly
no test coverage detected