You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.6 KiB
68 lines
1.6 KiB
7 months ago
|
// © 2016 and later: Unicode, Inc. and others.
|
||
|
// License & terms of use: http://www.unicode.org/copyright.html
|
||
|
/*
|
||
|
**********************************************************************
|
||
|
* Copyright (C) 2001-2007, International Business Machines
|
||
|
* Corporation and others. All Rights Reserved.
|
||
|
**********************************************************************
|
||
|
* Date Name Description
|
||
|
* 05/24/01 aliu Creation.
|
||
|
**********************************************************************
|
||
|
*/
|
||
|
|
||
|
#include "unicode/utypes.h"
|
||
|
|
||
|
#if !UCONFIG_NO_TRANSLITERATION
|
||
|
|
||
|
#include "unicode/ustring.h"
|
||
|
#include "unicode/uchar.h"
|
||
|
#include "toupptrn.h"
|
||
|
#include "ustr_imp.h"
|
||
|
#include "cpputils.h"
|
||
|
|
||
|
U_NAMESPACE_BEGIN
|
||
|
|
||
|
UOBJECT_DEFINE_RTTI_IMPLEMENTATION(UppercaseTransliterator)
|
||
|
|
||
|
/**
|
||
|
* Constructs a transliterator.
|
||
|
*/
|
||
|
UppercaseTransliterator::UppercaseTransliterator() :
|
||
|
CaseMapTransliterator(UNICODE_STRING("Any-Upper", 9), ucase_toFullUpper)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Destructor.
|
||
|
*/
|
||
|
UppercaseTransliterator::~UppercaseTransliterator() {
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Copy constructor.
|
||
|
*/
|
||
|
UppercaseTransliterator::UppercaseTransliterator(const UppercaseTransliterator& o) :
|
||
|
CaseMapTransliterator(o)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Assignment operator.
|
||
|
*/
|
||
|
/*UppercaseTransliterator& UppercaseTransliterator::operator=(
|
||
|
const UppercaseTransliterator& o) {
|
||
|
CaseMapTransliterator::operator=(o);
|
||
|
return *this;
|
||
|
}*/
|
||
|
|
||
|
/**
|
||
|
* Transliterator API.
|
||
|
*/
|
||
|
UppercaseTransliterator* UppercaseTransliterator::clone() const {
|
||
|
return new UppercaseTransliterator(*this);
|
||
|
}
|
||
|
|
||
|
U_NAMESPACE_END
|
||
|
|
||
|
#endif /* #if !UCONFIG_NO_TRANSLITERATION */
|