00001 /* 00002 ********************************************************************** 00003 * Copyright (C) 1999, International Business Machines 00004 * Corporation and others. All Rights Reserved. 00005 ********************************************************************** 00006 * Date Name Description 00007 * 03/14/00 aliu Creation. 00008 ********************************************************************** 00009 */ 00010 #ifndef PARSEERR_H 00011 #define PARSEERR_H 00012 00013 #include "unicode/utypes.h" 00014 #include "unicode/unistr.h" 00015 00031 struct ParseError { 00043 int32_t code; 00044 00050 int32_t line; 00051 00058 UTextOffset offset; 00059 00067 UnicodeString context; 00068 }; 00069 00070 #endif