Assimp
v3.1.1 (June 2014)
|
Defines helper functions for text parsing. More...
Namespaces | |
Assimp | |
MACHINE-GENERATED by scripts/ICFImporter/CppGenerator.py. | |
Functions | |
template<class char_t > | |
AI_FORCE_INLINE bool | Assimp::GetNextLine (const char_t *&buffer, char_t out[BufferSize]) |
AI_FORCE_INLINE std::string | Assimp::GetNextToken (const char *&in) |
template<class char_t > | |
AI_FORCE_INLINE bool | Assimp::IsLineEnd (char_t in) |
template<class char_t > | |
AI_FORCE_INLINE bool | Assimp::IsLower (char_t in) |
template<class char_t > | |
AI_FORCE_INLINE bool | Assimp::IsNumeric (char_t in) |
template<class char_t > | |
AI_FORCE_INLINE bool | Assimp::IsSpace (char_t in) |
template<class char_t > | |
AI_FORCE_INLINE bool | Assimp::IsSpaceOrNewLine (char_t in) |
template<class char_t > | |
AI_FORCE_INLINE bool | Assimp::IsUpper (char_t in) |
template<class char_t > | |
AI_FORCE_INLINE bool | Assimp::SkipLine (const char_t *in, const char_t **out) |
template<class char_t > | |
AI_FORCE_INLINE bool | Assimp::SkipLine (const char_t **inout) |
template<class char_t > | |
AI_FORCE_INLINE bool | Assimp::SkipSpaces (const char_t *in, const char_t **out) |
template<class char_t > | |
AI_FORCE_INLINE bool | Assimp::SkipSpaces (const char_t **inout) |
template<class char_t > | |
AI_FORCE_INLINE bool | Assimp::SkipSpacesAndLineEnd (const char_t *in, const char_t **out) |
template<class char_t > | |
AI_FORCE_INLINE bool | Assimp::SkipSpacesAndLineEnd (const char_t **inout) |
AI_FORCE_INLINE void | Assimp::SkipToken (const char *&in) |
template<class char_t > | |
AI_FORCE_INLINE bool | Assimp::TokenMatch (char_t *&in, const char *token, unsigned int len) |
AI_FORCE_INLINE bool | Assimp::TokenMatchI (const char *&in, const char *token, unsigned int len) |
Case-ignoring version of TokenMatch. More... | |
template<class char_t > | |
AI_FORCE_INLINE char_t | Assimp::ToLower (char_t in) |
template<class char_t > | |
AI_FORCE_INLINE char_t | Assimp::ToUpper (char_t in) |
Variables | |
static const unsigned int | Assimp::BufferSize = 4096 |
Defines helper functions for text parsing.