]> git.saurik.com Git - apple/icu.git/blame - icuSources/common/unifunct.cpp
ICU-64260.0.1.tar.gz
[apple/icu.git] / icuSources / common / unifunct.cpp
CommitLineData
f3c0d7a5
A
1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
b75a7d8f
A
3/*
4**********************************************************************
374ca955 5* Copyright (c) 2002-2004, International Business Machines
b75a7d8f
A
6* Corporation and others. All Rights Reserved.
7**********************************************************************
b75a7d8f
A
8*/
9
10#include "unicode/unifunct.h"
11
12U_NAMESPACE_BEGIN
13
374ca955
A
14UOBJECT_DEFINE_ABSTRACT_RTTI_IMPLEMENTATION(UnicodeFunctor)
15
16UnicodeFunctor::~UnicodeFunctor() {}
b75a7d8f
A
17
18UnicodeMatcher* UnicodeFunctor::toMatcher() const {
19 return 0;
20}
21
22UnicodeReplacer* UnicodeFunctor::toReplacer() const {
23 return 0;
24}
25
26U_NAMESPACE_END
27
28//eof