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