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

« back to all changes in this revision

Viewing changes to source/samples/layout/UnicodeReader.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
 
 * Copyright (C) 1998-2001, International Business Machines Corporation and   *
4
 
 * others. All Rights Reserved.                                               *
5
 
 ******************************************************************************
6
 
 */
7
 
 
8
 
#ifndef __UNICODEREADER_H
9
 
#define __UNICODEREADER_H
10
 
 
11
 
#include "unicode/utypes.h"
12
 
 
13
 
#include "GUISupport.h"
14
 
 
15
 
class UnicodeReader
16
 
{
17
 
public:
18
 
    UnicodeReader()
19
 
    {
20
 
        // nothing...
21
 
    }
22
 
 
23
 
    ~UnicodeReader()
24
 
    {
25
 
        // nothing, too
26
 
    }
27
 
 
28
 
    static const UChar *readFile(const char *fileName, GUISupport *guiSupport, int32_t &charCount);
29
 
};
30
 
 
31
 
#endif
32