ICU-21734 Add missing overrides to pure virtual methods

These methods are pure virtual in the base class too.
This commit is contained in:
Peter Varga 2021-09-02 09:26:11 +02:00 committed by Frank Yung-Fong Tang
parent 80d42a13fc
commit 90ee0c788f
15 changed files with 66 additions and 66 deletions

View file

@ -146,7 +146,7 @@ public:
* will return distinct unequal values.
* @stable ICU 2.0
*/
virtual UClassID getDynamicClassID(void) const = 0;
virtual UClassID getDynamicClassID(void) const override = 0;
/**
* Return a CharacterIterator over the text being analyzed.

View file

@ -142,7 +142,7 @@ public:
* @return a UClassID for this ForwardCharacterIterator
* @stable ICU 2.0
*/
virtual UClassID getDynamicClassID(void) const = 0;
virtual UClassID getDynamicClassID(void) const override = 0;
/**
* Gets the current code unit for returning and advances to the next code unit

View file

@ -77,7 +77,7 @@ public:
* @return clone, or nullptr if an error occurred
* @stable ICU 2.4
*/
virtual UnicodeFilter* clone() const = 0;
virtual UnicodeFilter* clone() const override = 0;
/**
* Returns <tt>true</tt> for characters that are in the selected
@ -93,7 +93,7 @@ public:
* and return the pointer.
* @stable ICU 2.4
*/
virtual UnicodeMatcher* toMatcher() const;
virtual UnicodeMatcher* toMatcher() const override;
/**
* Implement UnicodeMatcher API.
@ -102,13 +102,13 @@ public:
virtual UMatchDegree matches(const Replaceable& text,
int32_t& offset,
int32_t limit,
UBool incremental);
UBool incremental) override;
/**
* UnicodeFunctor API. Nothing to do.
* @stable ICU 2.4
*/
virtual void setData(const TransliterationRuleData*);
virtual void setData(const TransliterationRuleData*) override;
/**
* ICU "poor man's RTTI", returns a UClassID for this class.

View file

@ -100,7 +100,7 @@ public:
* different class IDs.
* @stable ICU 2.4
*/
virtual UClassID getDynamicClassID(void) const = 0;
virtual UClassID getDynamicClassID(void) const override = 0;
/**
* Set the data object associated with this functor. The data

View file

@ -58,7 +58,7 @@ public:
* Transliterator API.
* @return a copy of the object.
*/
virtual CaseMapTransliterator* clone() const = 0;
virtual CaseMapTransliterator* clone() const override = 0;
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.
@ -82,7 +82,7 @@ protected:
*/
virtual void handleTransliterate(Replaceable& text,
UTransPosition& offsets,
UBool isIncremental) const;
UBool isIncremental) const override;
UCaseMapFull *fMap;

View file

@ -71,9 +71,9 @@ public:
* @return the charset name.
*/
const char *getName() const = 0;
const char *getLanguage() const = 0;
UBool match(InputText* input, CharsetMatch *results) const = 0;
const char *getName() const override = 0;
const char *getLanguage() const override = 0;
UBool match(InputText* input, CharsetMatch *results) const override = 0;
/**
* Get the next character (however many bytes it is) from the input data
@ -100,12 +100,12 @@ class CharsetRecog_sjis : public CharsetRecog_mbcs {
public:
virtual ~CharsetRecog_sjis();
UBool nextChar(IteratedChar *it, InputText *det) const;
UBool nextChar(IteratedChar *it, InputText *det) const override;
UBool match(InputText* input, CharsetMatch *results) const;
UBool match(InputText* input, CharsetMatch *results) const override;
const char *getName() const;
const char *getLanguage() const;
const char *getName() const override;
const char *getLanguage() const override;
};
@ -121,17 +121,17 @@ class CharsetRecog_euc : public CharsetRecog_mbcs
public:
virtual ~CharsetRecog_euc();
const char *getName() const = 0;
const char *getLanguage() const = 0;
const char *getName() const override = 0;
const char *getLanguage() const override = 0;
UBool match(InputText* input, CharsetMatch *results) const = 0;
UBool match(InputText* input, CharsetMatch *results) const override = 0;
/*
* (non-Javadoc)
* Get the next character value for EUC based encodings.
* Character "value" is simply the raw bytes that make up the character
* packed into an int.
*/
UBool nextChar(IteratedChar *it, InputText *det) const;
UBool nextChar(IteratedChar *it, InputText *det) const override;
};
/**
@ -143,10 +143,10 @@ class CharsetRecog_euc_jp : public CharsetRecog_euc
public:
virtual ~CharsetRecog_euc_jp();
const char *getName() const;
const char *getLanguage() const;
const char *getName() const override;
const char *getLanguage() const override;
UBool match(InputText* input, CharsetMatch *results) const;
UBool match(InputText* input, CharsetMatch *results) const override;
};
/**
@ -158,10 +158,10 @@ class CharsetRecog_euc_kr : public CharsetRecog_euc
public:
virtual ~CharsetRecog_euc_kr();
const char *getName() const;
const char *getLanguage() const;
const char *getName() const override;
const char *getLanguage() const override;
UBool match(InputText* input, CharsetMatch *results) const;
UBool match(InputText* input, CharsetMatch *results) const override;
};
/**
@ -174,12 +174,12 @@ class CharsetRecog_big5 : public CharsetRecog_mbcs
public:
virtual ~CharsetRecog_big5();
UBool nextChar(IteratedChar* it, InputText* det) const;
UBool nextChar(IteratedChar* it, InputText* det) const override;
const char *getName() const;
const char *getLanguage() const;
const char *getName() const override;
const char *getLanguage() const override;
UBool match(InputText* input, CharsetMatch *results) const;
UBool match(InputText* input, CharsetMatch *results) const override;
};
@ -193,12 +193,12 @@ class CharsetRecog_gb_18030 : public CharsetRecog_mbcs
public:
virtual ~CharsetRecog_gb_18030();
UBool nextChar(IteratedChar* it, InputText* det) const;
UBool nextChar(IteratedChar* it, InputText* det) const override;
const char *getName() const;
const char *getLanguage() const;
const char *getName() const override;
const char *getLanguage() const override;
UBool match(InputText* input, CharsetMatch *results) const;
UBool match(InputText* input, CharsetMatch *results) const override;
};
U_NAMESPACE_END

View file

@ -74,8 +74,8 @@ class CharsetRecog_sbcs : public CharsetRecognizer
public:
CharsetRecog_sbcs();
virtual ~CharsetRecog_sbcs();
virtual const char *getName() const = 0;
virtual UBool match(InputText *det, CharsetMatch *results) const = 0;
virtual const char *getName() const override = 0;
virtual UBool match(InputText *det, CharsetMatch *results) const override = 0;
virtual int32_t match_sbcs(InputText *det, const int32_t ngrams[], const uint8_t charMap[]) const;
};

View file

@ -33,12 +33,12 @@ public:
/* (non-Javadoc)
* @see com.ibm.icu.text.CharsetRecognizer#getName()
*/
const char* getName() const = 0;
const char* getName() const override = 0;
/* (non-Javadoc)
* @see com.ibm.icu.text.CharsetRecognizer#match(com.ibm.icu.text.CharsetDetector)
*/
UBool match(InputText* textIn, CharsetMatch *results) const = 0;
UBool match(InputText* textIn, CharsetMatch *results) const override = 0;
};
@ -48,9 +48,9 @@ public:
virtual ~CharsetRecog_UTF_16_BE();
const char *getName() const;
const char *getName() const override;
UBool match(InputText* textIn, CharsetMatch *results) const;
UBool match(InputText* textIn, CharsetMatch *results) const override;
};
class CharsetRecog_UTF_16_LE : public CharsetRecog_Unicode
@ -59,9 +59,9 @@ public:
virtual ~CharsetRecog_UTF_16_LE();
const char *getName() const;
const char *getName() const override;
UBool match(InputText* textIn, CharsetMatch *results) const;
UBool match(InputText* textIn, CharsetMatch *results) const override;
};
class CharsetRecog_UTF_32 : public CharsetRecog_Unicode
@ -72,34 +72,34 @@ public:
virtual ~CharsetRecog_UTF_32();
const char* getName() const = 0;
const char* getName() const override = 0;
UBool match(InputText* textIn, CharsetMatch *results) const;
UBool match(InputText* textIn, CharsetMatch *results) const override;
};
class CharsetRecog_UTF_32_BE : public CharsetRecog_UTF_32
{
protected:
int32_t getChar(const uint8_t *input, int32_t index) const;
int32_t getChar(const uint8_t *input, int32_t index) const override;
public:
virtual ~CharsetRecog_UTF_32_BE();
const char *getName() const;
const char *getName() const override;
};
class CharsetRecog_UTF_32_LE : public CharsetRecog_UTF_32
{
protected:
int32_t getChar(const uint8_t *input, int32_t index) const;
int32_t getChar(const uint8_t *input, int32_t index) const override;
public:
virtual ~CharsetRecog_UTF_32_LE();
const char* getName() const;
const char* getName() const override;
};
U_NAMESPACE_END

View file

@ -49,7 +49,7 @@ public:
* @return clone, or nullptr if an error occurred
* @stable ICU 3.8
*/
virtual BasicTimeZone* clone() const = 0;
virtual BasicTimeZone* clone() const override = 0;
/**
* Gets the first time zone transition after the base time.

View file

@ -1341,7 +1341,7 @@ public:
* same class ID. Objects of other classes have different class IDs.
* @stable ICU 2.0
*/
virtual UClassID getDynamicClassID(void) const = 0;
virtual UClassID getDynamicClassID(void) const override = 0;
/**
* Returns the calendar type name string for this Calendar object.

View file

@ -864,7 +864,7 @@ public:
* IDs.
* @stable ICU 2.0
*/
virtual UClassID getDynamicClassID(void) const = 0;
virtual UClassID getDynamicClassID(void) const override = 0;
/**
* Universal attribute setter

View file

@ -229,13 +229,13 @@ public:
* @return clone, or nullptr if an error occurred
* @stable ICU 2.0
*/
virtual DateFormat* clone() const = 0;
virtual DateFormat* clone() const override = 0;
/**
* Equality operator. Returns true if the two formats have the same behavior.
* @stable ICU 2.0
*/
virtual bool operator==(const Format&) const;
virtual bool operator==(const Format&) const override;
using Format::format;
@ -257,7 +257,7 @@ public:
virtual UnicodeString& format(const Formattable& obj,
UnicodeString& appendTo,
FieldPosition& pos,
UErrorCode& status) const;
UErrorCode& status) const override;
/**
* Format an object to produce a string. This method handles Formattable
@ -277,7 +277,7 @@ public:
virtual UnicodeString& format(const Formattable& obj,
UnicodeString& appendTo,
FieldPositionIterator* posIter,
UErrorCode& status) const;
UErrorCode& status) const override;
/**
* Formats a date into a date/time string. This is an abstract method which
* concrete subclasses must implement.
@ -523,7 +523,7 @@ public:
*/
virtual void parseObject(const UnicodeString& source,
Formattable& result,
ParsePosition& parse_pos) const;
ParsePosition& parse_pos) const override;
/**
* Create a default date/time formatter that uses the SHORT style for both

View file

@ -266,7 +266,7 @@ public:
* @return clone, or nullptr if an error occurred
* @stable ICU 2.0
*/
virtual NumberFormat* clone() const = 0;
virtual NumberFormat* clone() const override = 0;
/**
* Return true if the given Format objects are semantically equal.
@ -274,7 +274,7 @@ public:
* @return true if the given Format objects are semantically equal.
* @stable ICU 2.0
*/
virtual bool operator==(const Format& other) const;
virtual bool operator==(const Format& other) const override;
using Format::format;
@ -297,7 +297,7 @@ public:
virtual UnicodeString& format(const Formattable& obj,
UnicodeString& appendTo,
FieldPosition& pos,
UErrorCode& status) const;
UErrorCode& status) const override;
/**
* Format an object to produce a string. This method handles
@ -318,7 +318,7 @@ public:
virtual UnicodeString& format(const Formattable& obj,
UnicodeString& appendTo,
FieldPositionIterator* posIter,
UErrorCode& status) const;
UErrorCode& status) const override;
/**
* Parse a string to produce an object. This methods handles
@ -350,7 +350,7 @@ public:
*/
virtual void parseObject(const UnicodeString& source,
Formattable& result,
ParsePosition& parse_pos) const;
ParsePosition& parse_pos) const override;
/**
* Format a double number. These methods call the NumberFormat
@ -1077,7 +1077,7 @@ public:
* other classes have different class IDs.
* @stable ICU 2.0
*/
virtual UClassID getDynamicClassID(void) const = 0;
virtual UClassID getDynamicClassID(void) const override = 0;
protected:
@ -1238,12 +1238,12 @@ public:
/**
* @stable ICU 2.6
*/
virtual UBool visible(void) const;
virtual UBool visible(void) const override;
/**
* @stable ICU 2.6
*/
virtual const UnicodeString * getSupportedIDs(int32_t &count, UErrorCode& status) const;
virtual const UnicodeString * getSupportedIDs(int32_t &count, UErrorCode& status) const override;
};
#endif /* #if !UCONFIG_NO_SERVICE */

View file

@ -839,7 +839,7 @@ public:
* same class ID. Objects of other classes have different class IDs.
* @stable ICU 2.0
*/
virtual UClassID getDynamicClassID(void) const = 0;
virtual UClassID getDynamicClassID(void) const override = 0;
/**
* Returns the amount of time to be added to local standard time

View file

@ -1527,7 +1527,7 @@ public:
* different class IDs.
* @stable ICU 2.0
*/
virtual UClassID getDynamicClassID(void) const = 0;
virtual UClassID getDynamicClassID(void) const override = 0;
private:
static UBool initializeRegistry(UErrorCode &status);