Default constructor, the string is set to have zero length */
| 253 | #ifdef __cplusplus |
| 254 | /** Default constructor, the string is set to have zero length */ |
| 255 | aiString() : |
| 256 | length(0) |
| 257 | { |
| 258 | data[0] = '\0'; |
| 259 | |
| 260 | #ifdef ASSIMP_BUILD_DEBUG |
| 261 | // Debug build: overwrite the string on its full length with ESC (27) |
| 262 | memset(data+1,27,MAXLEN-1); |
| 263 | #endif |
| 264 | } |
| 265 | |
| 266 | /** Copy constructor */ |
| 267 | aiString(const aiString& rOther) : |