1999-08-16 21:50:52 +00:00
|
|
|
/*
|
2001-03-21 20:44:20 +00:00
|
|
|
******************************************************************************
|
|
|
|
* Copyright (C) 1996-2001, International Business Machines Corporation and *
|
|
|
|
* others. All Rights Reserved. *
|
|
|
|
******************************************************************************
|
1999-08-16 21:50:52 +00:00
|
|
|
*/
|
|
|
|
// FILE NAME : unicode.cpp
|
|
|
|
//
|
|
|
|
// CREATED
|
|
|
|
// Wednesday, December 11, 1996
|
|
|
|
//
|
|
|
|
// CHANGES
|
|
|
|
// Wednesday, February 4, 1998
|
|
|
|
// Changed logic in toUpperCase and toLowerCase in order
|
|
|
|
// to avoid 0xFFFF to be returned when receiving
|
|
|
|
// confusing Unichar to lowercase or to uppercase
|
|
|
|
// (e.g. Letterlike symbols)
|
|
|
|
//
|
|
|
|
// CHANGES BY
|
|
|
|
// Bertramd A. DAMIBA
|
|
|
|
//
|
|
|
|
// CREATED BY
|
|
|
|
// Helena Shih
|
|
|
|
//
|
|
|
|
// CHANGES
|
|
|
|
// Thursday, April 15, 1999
|
|
|
|
// Modified the definitions of all the functions
|
|
|
|
// C++ Wrappers for Unicode
|
|
|
|
// CHANGES BY
|
|
|
|
// Madhu Katragadda
|
2001-03-21 20:44:20 +00:00
|
|
|
// 5/20/99 Madhu Added the function u_getVersion()
|
|
|
|
// 07/09/99 stephen Added definition for {MIN,MAX}_VALUE
|
1999-11-23 01:25:27 +00:00
|
|
|
// 11/22/99 aliu Added MIN_RADIX, MAX_RADIX, digit, forDigit
|
2001-03-21 20:44:20 +00:00
|
|
|
//****************************************************************************
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2000-03-24 00:51:01 +00:00
|
|
|
#include "unicode/utypes.h"
|
1999-12-28 23:39:02 +00:00
|
|
|
#include "unicode/uchar.h"
|
2000-03-24 00:51:01 +00:00
|
|
|
#include "unicode/unicode.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-10-08 23:26:58 +00:00
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
|
2000-03-24 00:51:01 +00:00
|
|
|
/*
|
|
|
|
* Private (sort of) constructors etc., defined only to prevent
|
|
|
|
* instantiation and subclassing. Therefore, empty.
|
|
|
|
*/
|
|
|
|
Unicode::Unicode() {}
|
2000-04-13 23:00:43 +00:00
|
|
|
Unicode::Unicode(const Unicode &) {}
|
2000-03-24 00:51:01 +00:00
|
|
|
Unicode::~Unicode() {}
|
|
|
|
const Unicode &
|
2000-04-13 23:00:43 +00:00
|
|
|
Unicode::operator=(const Unicode &) {
|
1999-08-16 21:50:52 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2001-10-08 23:26:58 +00:00
|
|
|
U_NAMESPACE_END
|