| 148 | return *this; |
| 149 | } |
| 150 | const char *getString() const |
| 151 | { |
| 152 | if(index) |
| 153 | return gNetStringTable->lookupString(index); |
| 154 | else |
| 155 | return NULL; |
| 156 | } |
| 157 | bool isNull() const { return index == 0; } |
| 158 | bool isValidString() const { return index != 0; } |
| 159 | U32 getIndex() const { return index; } |
no test coverage detected