Defined in header file: hzTokens.h

Enumeration of token types

Enum definition:

enum    hzTokenType
{

TOKEN_ALPHANUMToken consists of string of [a-z] or [A-Z] or [0-9]
TOKEN_OPERATORToken is any of the standard operators
TOKEN_SEPARATORToken acts as a separator
TOKEN_INTEGERToken is a string of [0-9]
TOKEN_NUMBERToken is a number eg 10, 10.8, 1.08e-2 etc etc
TOKEN_HEXVALUEToken is an integer expresed in hex, must begin with '0x'
TOKEN_DOUBLEToken is a number of standard form
TOKEN_STRINGToken is a string
TOKEN_COMMENTToken is comment. Either /* ... */ or //
TOKEN_UNDEFINEDToken is none of the above

} ;