Main Page   Class Hierarchy   Compound List   File List   Header Files   Sources   Compound Members   File Members  

parseerr.h

This is the verbatim text of the parseerr.h include file.
/*
**********************************************************************
*   Copyright (C) 1999-2000, International Business Machines
*   Corporation and others.  All Rights Reserved.
**********************************************************************
*   Date        Name        Description
*   03/14/00    aliu        Creation.
*   06/27/00    aliu        Change from C++ class to C struct
**********************************************************************
*/
#ifndef PARSEERR_H
#define PARSEERR_H

#include "unicode/utypes.h"


enum { U_PARSE_CONTEXT_LEN = 16 };

typedef struct _UParseError {

    int32_t        code;

    int32_t        line;

    UTextOffset    offset;

    UChar          preContext[U_PARSE_CONTEXT_LEN];

    UChar          postContext[U_PARSE_CONTEXT_LEN];

} UParseError;

#endif

Generated at Wed Aug 16 16:05:56 2000 for ICU1.6 by doxygen 1.0.0 written by Dimitri van Heesch, © 1997-1999