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