ICU-1544 add virtual extractBetween() to Replaceable and new UReplaceableCallback member 'extract'

X-SVN-Rev: 7789
This commit is contained in:
Alan Liu 2002-02-26 19:00:57 +00:00
parent e5a8f1678a
commit a3fb0df20c

View File

@ -66,7 +66,7 @@ public:
return s;
}
void extractBetween(UTextOffset start, UTextOffset limit, UnicodeString result) {
void extractBetween(UTextOffset start, UTextOffset limit, UnicodeString& result) const {
chars.extractBetween(start, limit, result);
}