Main Page   Class Hierarchy   Alphabetical List   Data Structures   File List   Data Fields   Globals  

parseerr.h

00001 /*
00002 **********************************************************************
00003 *   Copyright (C) 1999-2000, International Business Machines
00004 *   Corporation and others.  All Rights Reserved.
00005 **********************************************************************
00006 *   Date        Name        Description
00007 *   03/14/00    aliu        Creation.
00008 *   06/27/00    aliu        Change from C++ class to C struct
00009 **********************************************************************
00010 */
00011 #ifndef PARSEERR_H
00012 #define PARSEERR_H
00013 
00014 #include "unicode/utypes.h"
00015 
00016 
00021 enum { U_PARSE_CONTEXT_LEN = 16 };
00022 
00040 typedef struct _UParseError {
00041 
00053     /*int32_t        code; */
00054 
00062     int32_t        line;
00063 
00072     UTextOffset    offset;
00073 
00078     UChar          preContext[U_PARSE_CONTEXT_LEN];
00079 
00084     UChar          postContext[U_PARSE_CONTEXT_LEN];
00085 
00086 } UParseError;
00087 
00088 #endif

Generated on Tue Mar 5 13:05:45 2002 for ICU 2.0 by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002