+ /**
+ * Get the current reordering of scripts (if one has been set).
+ * @param dest The array to fill with the script ordering.
+ * @param destCapacity The length of dest. If it is 0, then dest may be NULL and the function will only return the length of the result without writing any of the result string (pre-flighting).
+ * @param pErrorCode Must be a valid pointer to an error code value, which must not indicate a failure before the function call.
+ * @return The length of the array of the script ordering.
+ * @see ucol_getReorderCodes
+ * @internal
+ */
+ virtual int32_t getReorderCodes(int32_t* dest,
+ int32_t destCapacity,
+ UErrorCode& status) const;
+
+ /**
+ * Set the ordering of scripts for this collator.
+ * @param reorderCodes An array of script codes in the new order.
+ * @param reorderCodesLength The length of reorderCodes.
+ * @see ucol_setReorderCodes
+ * @internal
+ */
+ virtual void setReorderCodes(const int32_t* reorderCodes,
+ int32_t reorderCodesLength,
+ UErrorCode& status);
+
+