2001-11-16 23:51:15 +00:00
|
|
|
/*
|
|
|
|
**********************************************************************
|
2007-06-03 06:08:46 +00:00
|
|
|
* Copyright (C) 2001-2007, International Business Machines
|
2001-11-16 23:51:15 +00:00
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
**********************************************************************
|
|
|
|
* Date Name Description
|
|
|
|
* 05/24/01 aliu Creation.
|
|
|
|
**********************************************************************
|
|
|
|
*/
|
|
|
|
#ifndef TOUPPTRN_H
|
|
|
|
#define TOUPPTRN_H
|
|
|
|
|
2002-09-20 01:54:48 +00:00
|
|
|
#include "unicode/utypes.h"
|
|
|
|
|
|
|
|
#if !UCONFIG_NO_TRANSLITERATION
|
|
|
|
|
2001-12-03 21:43:13 +00:00
|
|
|
#include "unicode/translit.h"
|
2004-09-06 15:57:11 +00:00
|
|
|
#include "casetrn.h"
|
2001-11-16 23:51:15 +00:00
|
|
|
|
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A transliterator that performs locale-sensitive toUpper()
|
|
|
|
* case mapping.
|
|
|
|
* @author Alan Liu
|
|
|
|
*/
|
2007-06-03 06:08:46 +00:00
|
|
|
class UppercaseTransliterator : public CaseMapTransliterator {
|
2001-11-16 23:51:15 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructs a transliterator.
|
2002-07-01 11:04:45 +00:00
|
|
|
* @param loc the given locale.
|
2001-11-16 23:51:15 +00:00
|
|
|
*/
|
2004-12-28 20:06:43 +00:00
|
|
|
UppercaseTransliterator();
|
2001-11-16 23:51:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Destructor.
|
|
|
|
*/
|
|
|
|
virtual ~UppercaseTransliterator();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copy constructor.
|
|
|
|
*/
|
|
|
|
UppercaseTransliterator(const UppercaseTransliterator&);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Transliterator API.
|
2002-07-01 11:04:45 +00:00
|
|
|
* @return a copy of the object.
|
2001-11-16 23:51:15 +00:00
|
|
|
*/
|
2004-08-28 04:42:33 +00:00
|
|
|
virtual Transliterator* clone(void) const;
|
2001-11-16 23:51:15 +00:00
|
|
|
|
2002-06-29 00:04:16 +00:00
|
|
|
/**
|
|
|
|
* ICU "poor man's RTTI", returns a UClassID for the actual class.
|
|
|
|
*/
|
2003-08-31 20:53:46 +00:00
|
|
|
virtual UClassID getDynamicClassID() const;
|
2002-06-29 00:04:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ICU "poor man's RTTI", returns a UClassID for this class.
|
|
|
|
*/
|
2007-06-03 06:08:46 +00:00
|
|
|
U_I18N_API static UClassID U_EXPORT2 getStaticClassID();
|
2007-06-08 22:31:20 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* Assignment operator.
|
|
|
|
*/
|
|
|
|
UppercaseTransliterator& operator=(const UppercaseTransliterator&);
|
2001-11-16 23:51:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
U_NAMESPACE_END
|
|
|
|
|
2002-09-20 01:54:48 +00:00
|
|
|
#endif /* #if !UCONFIG_NO_TRANSLITERATION */
|
|
|
|
|
2001-11-16 23:51:15 +00:00
|
|
|
#endif
|