2002-05-29 18:36:09 +00:00
|
|
|
/*
|
|
|
|
**********************************************************************
|
2003-08-27 01:01:42 +00:00
|
|
|
* Copyright (c) 2002-2003, International Business Machines
|
2002-05-29 18:36:09 +00:00
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
**********************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "unicode/unifunct.h"
|
|
|
|
|
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
|
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
|