unifunct.cpp 693 B

12345678910111213141516171819202122232425262728
  1. // © 2016 and later: Unicode, Inc. and others.
  2. // License & terms of use: http://www.unicode.org/copyright.html
  3. /*
  4. **********************************************************************
  5. * Copyright (c) 2002-2004, International Business Machines
  6. * Corporation and others. All Rights Reserved.
  7. **********************************************************************
  8. */
  9. #include "unicode/unifunct.h"
  10. U_NAMESPACE_BEGIN
  11. UOBJECT_DEFINE_ABSTRACT_RTTI_IMPLEMENTATION(UnicodeFunctor)
  12. UnicodeFunctor::~UnicodeFunctor() {}
  13. UnicodeMatcher* UnicodeFunctor::toMatcher() const {
  14. return nullptr;
  15. }
  16. UnicodeReplacer* UnicodeFunctor::toReplacer() const {
  17. return nullptr;
  18. }
  19. U_NAMESPACE_END
  20. //eof