/* ********************************************************************** * Copyright (C) 1999, International Business Machines * Corporation and others. All Rights Reserved. ********************************************************************** * Date Name Description * 03/14/00 aliu Creation. ********************************************************************** */ #ifndef PARSEERR_H #define PARSEERR_H #include "unicode/utypes.h" #include "unicode/unistr.h" struct ParseError { int32_t code; int32_t line; UTextOffset offset; UnicodeString context; }; #endif