Interface ParseListener
The ParseListener interface is a general interface for handling errors while parsing Hugin NET files, Hugin case files, Hugin data files, files of node names, and strings representing Expressions.
Note: Return and argument types for methods in this class vary depending on the particular API DLL (x86/x64 platform, single/double precision) being used. Please read the section Using the Hugin C#/.NET Core/.NET 5 API.
Namespace: HAPI
Assembly: hugincs-9.4-netstandard2.0-x64.dll
Syntax
public interface ParseListener
Methods
ParseError(ulong, string)
Handles parse errors occuring during parsing of Hugin NET files, Hugin case files, Hugin data files, files of node names, and strings representing Expressions.
Declaration
void ParseError(ulong position, string msg)
Parameters
Type | Name | Description |
---|---|---|
ulong | position | the position at which the parse error occurred. |
string | msg | the parse error message generated by Hugin. |
Remarks
Generic declaration:
void ParseError (size_t position, String msg)