intl/icu/source/common/unifunct.cpp

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/intl/icu/source/common/unifunct.cpp	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,26 @@
     1.4 +/*
     1.5 +**********************************************************************
     1.6 +* Copyright (c) 2002-2004, International Business Machines
     1.7 +* Corporation and others.  All Rights Reserved.
     1.8 +**********************************************************************
     1.9 +*/
    1.10 +
    1.11 +#include "unicode/unifunct.h"
    1.12 +
    1.13 +U_NAMESPACE_BEGIN
    1.14 +
    1.15 +UOBJECT_DEFINE_ABSTRACT_RTTI_IMPLEMENTATION(UnicodeFunctor)
    1.16 +
    1.17 +UnicodeFunctor::~UnicodeFunctor() {}
    1.18 +
    1.19 +UnicodeMatcher* UnicodeFunctor::toMatcher() const {
    1.20 +    return 0;
    1.21 +}
    1.22 +
    1.23 +UnicodeReplacer* UnicodeFunctor::toReplacer() const {
    1.24 +    return 0;
    1.25 +}
    1.26 +
    1.27 +U_NAMESPACE_END
    1.28 +
    1.29 +//eof

mercurial