< Set a pointer to arbitrary user data.
| 246 | |
| 247 | void SetUserData( void* user ) { userData = user; } ///< Set a pointer to arbitrary user data. |
| 248 | void* GetUserData() { return userData; } ///< Get a pointer to arbitrary user data. |
| 249 | const void* GetUserData() const { return userData; } ///< Get a pointer to arbitrary user data. |
| 250 | |
| 251 | // Table that returs, for a given lead byte, the total number of bytes |
nothing calls this directly
no outgoing calls
no test coverage detected