constructor Create(aUseWideChar : Boolean);
Creates the parser instance.
Create allocates and initializes an instance of the parser class. The aUseWideChar parameter defines whether the parser will only accept wide characters (True) or single byte characters (False). If True, the ProcessWideChar method should be used to process the input data stream, character by character. If False, the ProcessChar method should be used.
See also: ProcessChar, ProcessWideChar