Defined in header file: hzTokens.h
Enumeration of token types
Enum definition:
enum hzTokenType
{
| TOKEN_ALPHANUM | Token consists of string of [a-z] or [A-Z] or [0-9] | ||
| TOKEN_OPERATOR | Token is any of the standard operators | ||
| TOKEN_SEPARATOR | Token acts as a separator | ||
| TOKEN_INTEGER | Token is a string of [0-9] | ||
| TOKEN_NUMBER | Token is a number eg 10, 10.8, 1.08e-2 etc etc | ||
| TOKEN_HEXVALUE | Token is an integer expresed in hex, must begin with '0x' | ||
| TOKEN_DOUBLE | Token is a number of standard form | ||
| TOKEN_STRING | Token is a string | ||
| TOKEN_COMMENT | Token is comment. Either /* ... */ or // | ||
| TOKEN_UNDEFINED | Token is none of the above |
} ;