parsepos.cpp 613 B

1234567891011121314151617181920212223
  1. // © 2016 and later: Unicode, Inc. and others.
  2. // License & terms of use: http://www.unicode.org/copyright.html
  3. /*
  4. **********************************************************************
  5. * Copyright (C) 2003-2003, International Business Machines
  6. * Corporation and others. All Rights Reserved.
  7. **********************************************************************
  8. */
  9. #include "unicode/parsepos.h"
  10. U_NAMESPACE_BEGIN
  11. UOBJECT_DEFINE_RTTI_IMPLEMENTATION(ParsePosition)
  12. ParsePosition::~ParsePosition() {}
  13. ParsePosition *
  14. ParsePosition::clone() const {
  15. return new ParsePosition(*this);
  16. }
  17. U_NAMESPACE_END