~ubuntu-branches/ubuntu/gutsy/icu/gutsy-updates

« back to all changes in this revision

Viewing changes to source/tools/genrb/parse.h

  • Committer: Package Import Robot
  • Author(s): Jay Berkenbilt
  • Date: 2005-11-19 11:29:31 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20051119112931-vcizkrp10tli4enw
Tags: 3.4-3
Explicitly build with g++ 3.4.  The current ICU fails its test suite
with 4.0 but not with 3.4.  Future versions should work properly with
4.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
*******************************************************************************
3
 
*
4
 
*   Copyright (C) 1998-2000, International Business Machines
5
 
*   Corporation and others.  All Rights Reserved.
6
 
*
7
 
*******************************************************************************
8
 
*
9
 
* File parse.h
10
 
*
11
 
* Modification History:
12
 
*
13
 
*   Date        Name        Description
14
 
*   05/26/99    stephen     Creation.
15
 
*******************************************************************************
16
 
*/
17
 
 
18
 
#ifndef PARSE_H
19
 
#define PARSE_H 1
20
 
 
21
 
#include "unicode/utypes.h"
22
 
#include "filestrm.h"
23
 
#include "rblist.h"
24
 
#include "ucbuf.h"
25
 
 
26
 
U_CDECL_BEGIN
27
 
/* One time parser initalisation */
28
 
void initParser(void);
29
 
 
30
 
/* Parse a ResourceBundle text file */
31
 
struct SRBRoot* parse(UCHARBUF *buf, const char* inputDir, UErrorCode *status);
32
 
 
33
 
U_CDECL_END
34
 
 
35
 
#endif
36