2017-01-20 00:20:31 +00:00
|
|
|
// © 2016 and later: Unicode, Inc. and others.
|
2016-06-15 18:58:17 +00:00
|
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
2002-05-29 18:36:09 +00:00
|
|
|
/*
|
|
|
|
**********************************************************************
|
2016-05-31 21:45:07 +00:00
|
|
|
* Copyright (c) 2002-2004, International Business Machines
|
|
|
|
* Corporation and others. All Rights Reserved.
|
2002-05-29 18:36:09 +00:00
|
|
|
**********************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "unicode/unifunct.h"
|
|
|
|
|
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
|
2004-06-04 01:16:05 +00:00
|
|
|
UOBJECT_DEFINE_ABSTRACT_RTTI_IMPLEMENTATION(UnicodeFunctor)
|
2004-05-28 20:13:11 +00:00
|
|
|
|
2003-08-27 01:01:42 +00:00
|
|
|
UnicodeFunctor::~UnicodeFunctor() {}
|
2002-05-29 18:36:09 +00:00
|
|
|
|
|
|
|
UnicodeMatcher* UnicodeFunctor::toMatcher() const {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
UnicodeReplacer* UnicodeFunctor::toReplacer() const {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
U_NAMESPACE_END
|
|
|
|
|
|
|
|
//eof
|