aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/icu/i18n/funcrepl.h
diff options
context:
space:
mode:
authorneksard <neksard@yandex-team.ru>2022-02-10 16:45:33 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:45:33 +0300
commit1d9c550e7c38e051d7961f576013a482003a70d9 (patch)
treeb2cc84ee7850122e7ccf51d0ea21e4fa7e7a5685 /contrib/libs/icu/i18n/funcrepl.h
parent8f7cf138264e0caa318144bf8a2c950e0b0a8593 (diff)
downloadydb-1d9c550e7c38e051d7961f576013a482003a70d9.tar.gz
Restoring authorship annotation for <neksard@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/icu/i18n/funcrepl.h')
-rw-r--r--contrib/libs/icu/i18n/funcrepl.h238
1 files changed, 119 insertions, 119 deletions
diff --git a/contrib/libs/icu/i18n/funcrepl.h b/contrib/libs/icu/i18n/funcrepl.h
index d633a867e1..fe41f6caaa 100644
--- a/contrib/libs/icu/i18n/funcrepl.h
+++ b/contrib/libs/icu/i18n/funcrepl.h
@@ -1,121 +1,121 @@
// © 2016 and later: Unicode, Inc. and others.
-// License & terms of use: http://www.unicode.org/copyright.html
-/*
-**********************************************************************
-* Copyright (c) 2002-2011, International Business Machines Corporation
-* and others. All Rights Reserved.
-**********************************************************************
-* Date Name Description
-* 02/04/2002 aliu Creation.
-**********************************************************************
-*/
-
-#ifndef FUNCREPL_H
-#define FUNCREPL_H
-
-#include "unicode/utypes.h"
-
-#if !UCONFIG_NO_TRANSLITERATION
-
-#include "unicode/unifunct.h"
-#include "unicode/unirepl.h"
-
-U_NAMESPACE_BEGIN
-
-class Transliterator;
-
-/**
- * A replacer that calls a transliterator to generate its output text.
- * The input text to the transliterator is the output of another
- * UnicodeReplacer object. That is, this replacer wraps another
- * replacer with a transliterator.
- *
- * @author Alan Liu
- */
-class FunctionReplacer : public UnicodeFunctor, public UnicodeReplacer {
-
- private:
-
- /**
- * The transliterator. Must not be null. OWNED.
- */
- Transliterator* translit;
-
- /**
- * The replacer object. This generates text that is then
- * processed by 'translit'. Must not be null. OWNED.
- */
- UnicodeFunctor* replacer;
-
- public:
-
- /**
- * Construct a replacer that takes the output of the given
- * replacer, passes it through the given transliterator, and emits
- * the result as output.
- */
- FunctionReplacer(Transliterator* adoptedTranslit,
- UnicodeFunctor* adoptedReplacer);
-
- /**
- * Copy constructor.
- */
- FunctionReplacer(const FunctionReplacer& other);
-
- /**
- * Destructor
- */
- virtual ~FunctionReplacer();
-
- /**
- * Implement UnicodeFunctor
- */
+// License & terms of use: http://www.unicode.org/copyright.html
+/*
+**********************************************************************
+* Copyright (c) 2002-2011, International Business Machines Corporation
+* and others. All Rights Reserved.
+**********************************************************************
+* Date Name Description
+* 02/04/2002 aliu Creation.
+**********************************************************************
+*/
+
+#ifndef FUNCREPL_H
+#define FUNCREPL_H
+
+#include "unicode/utypes.h"
+
+#if !UCONFIG_NO_TRANSLITERATION
+
+#include "unicode/unifunct.h"
+#include "unicode/unirepl.h"
+
+U_NAMESPACE_BEGIN
+
+class Transliterator;
+
+/**
+ * A replacer that calls a transliterator to generate its output text.
+ * The input text to the transliterator is the output of another
+ * UnicodeReplacer object. That is, this replacer wraps another
+ * replacer with a transliterator.
+ *
+ * @author Alan Liu
+ */
+class FunctionReplacer : public UnicodeFunctor, public UnicodeReplacer {
+
+ private:
+
+ /**
+ * The transliterator. Must not be null. OWNED.
+ */
+ Transliterator* translit;
+
+ /**
+ * The replacer object. This generates text that is then
+ * processed by 'translit'. Must not be null. OWNED.
+ */
+ UnicodeFunctor* replacer;
+
+ public:
+
+ /**
+ * Construct a replacer that takes the output of the given
+ * replacer, passes it through the given transliterator, and emits
+ * the result as output.
+ */
+ FunctionReplacer(Transliterator* adoptedTranslit,
+ UnicodeFunctor* adoptedReplacer);
+
+ /**
+ * Copy constructor.
+ */
+ FunctionReplacer(const FunctionReplacer& other);
+
+ /**
+ * Destructor
+ */
+ virtual ~FunctionReplacer();
+
+ /**
+ * Implement UnicodeFunctor
+ */
virtual FunctionReplacer* clone() const;
-
- /**
- * UnicodeFunctor API. Cast 'this' to a UnicodeReplacer* pointer
- * and return the pointer.
- */
- virtual UnicodeReplacer* toReplacer() const;
-
- /**
- * UnicodeReplacer API
- */
- virtual int32_t replace(Replaceable& text,
- int32_t start,
- int32_t limit,
- int32_t& cursor);
-
- /**
- * UnicodeReplacer API
- */
- virtual UnicodeString& toReplacerPattern(UnicodeString& rule,
- UBool escapeUnprintable) const;
-
- /**
- * Implement UnicodeReplacer
- */
- virtual void addReplacementSetTo(UnicodeSet& toUnionTo) const;
-
- /**
- * UnicodeFunctor API
- */
- virtual void setData(const TransliterationRuleData*);
-
- /**
- * ICU "poor man's RTTI", returns a UClassID for the actual class.
- */
- virtual UClassID getDynamicClassID() const;
-
- /**
- * ICU "poor man's RTTI", returns a UClassID for this class.
- */
- static UClassID U_EXPORT2 getStaticClassID();
-};
-
-U_NAMESPACE_END
-
-#endif /* #if !UCONFIG_NO_TRANSLITERATION */
-#endif
-
-//eof
+
+ /**
+ * UnicodeFunctor API. Cast 'this' to a UnicodeReplacer* pointer
+ * and return the pointer.
+ */
+ virtual UnicodeReplacer* toReplacer() const;
+
+ /**
+ * UnicodeReplacer API
+ */
+ virtual int32_t replace(Replaceable& text,
+ int32_t start,
+ int32_t limit,
+ int32_t& cursor);
+
+ /**
+ * UnicodeReplacer API
+ */
+ virtual UnicodeString& toReplacerPattern(UnicodeString& rule,
+ UBool escapeUnprintable) const;
+
+ /**
+ * Implement UnicodeReplacer
+ */
+ virtual void addReplacementSetTo(UnicodeSet& toUnionTo) const;
+
+ /**
+ * UnicodeFunctor API
+ */
+ virtual void setData(const TransliterationRuleData*);
+
+ /**
+ * ICU "poor man's RTTI", returns a UClassID for the actual class.
+ */
+ virtual UClassID getDynamicClassID() const;
+
+ /**
+ * ICU "poor man's RTTI", returns a UClassID for this class.
+ */
+ static UClassID U_EXPORT2 getStaticClassID();
+};
+
+U_NAMESPACE_END
+
+#endif /* #if !UCONFIG_NO_TRANSLITERATION */
+#endif
+
+//eof