MCPcopy Create free account
hub / github.com/TheRealMJP/DeferredTexturing / aiString

Method aiString

Externals/Assimp-3.1.1/include/types.h:255–264  ·  view source on GitHub ↗

Default constructor, the string is set to have zero length */

Source from the content-addressed store, hash-verified

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) :

Callers

nothing calls this directly

Calls 1

c_strMethod · 0.80

Tested by

no test coverage detected