~ubuntu-branches/ubuntu/quantal/icu/quantal

« back to all changes in this revision

Viewing changes to source/common/unicode.cpp

  • Committer: Package Import Robot
  • Author(s): Yves Arrouye
  • Date: 2002-03-03 15:31:13 UTC
  • Revision ID: package-import@ubuntu.com-20020303153113-3ssceqlq45xbmbnc
Tags: upstream-2.0-2.1pre20020303
ImportĀ upstreamĀ versionĀ 2.0-2.1pre20020303

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
******************************************************************************
 
3
* Copyright (C) 1996-2001, International Business Machines Corporation and   *
 
4
* others. All Rights Reserved.                                               *
 
5
******************************************************************************
 
6
*/
 
7
//  FILE NAME : unicode.cpp
 
8
//
 
9
//  CREATED
 
10
//      Wednesday, December 11, 1996
 
11
//  
 
12
//  CHANGES
 
13
//      Wednesday, February 4,  1998
 
14
//      Changed logic in toUpperCase and toLowerCase in order
 
15
//      to avoid 0xFFFF to be returned when receiving 
 
16
//      confusing Unichar  to lowercase or to uppercase
 
17
//      (e.g. Letterlike symbols)
 
18
//
 
19
//  CHANGES BY
 
20
//  Bertramd A. DAMIBA
 
21
//
 
22
//  CREATED BY
 
23
//      Helena Shih
 
24
//
 
25
//  CHANGES
 
26
//      Thursday, April 15, 1999
 
27
//      Modified the definitions of all the functions
 
28
//      C++ Wrappers for Unicode
 
29
//  CHANGES BY
 
30
//      Madhu Katragadda
 
31
//   5/20/99     Madhu      Added the function u_getVersion()
 
32
//  07/09/99     stephen    Added definition for {MIN,MAX}_VALUE
 
33
//  11/22/99     aliu       Added MIN_RADIX, MAX_RADIX, digit, forDigit
 
34
//****************************************************************************
 
35
 
 
36
#include "unicode/utypes.h"
 
37
#include "unicode/uchar.h"
 
38
#include "unicode/unicode.h"
 
39
 
 
40
U_NAMESPACE_BEGIN
 
41
 
 
42
/*
 
43
 * Private (sort of) constructors etc., defined only to prevent
 
44
 * instantiation and subclassing. Therefore, empty.
 
45
 */
 
46
Unicode::Unicode() {}
 
47
Unicode::Unicode(const Unicode &) {}
 
48
Unicode::~Unicode() {}
 
49
const Unicode &
 
50
Unicode::operator=(const Unicode &) {
 
51
    return *this;
 
52
}
 
53
U_NAMESPACE_END