2017-01-20 00:20:31 +00:00
|
|
|
// © 2016 and later: Unicode, Inc. and others.
|
2016-06-15 18:58:17 +00:00
|
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
2003-08-29 21:05:48 +00:00
|
|
|
/*
|
|
|
|
**********************************************************************
|
2016-05-31 21:45:07 +00:00
|
|
|
* Copyright (C) 2003-2003, International Business Machines
|
|
|
|
* Corporation and others. All Rights Reserved.
|
2003-08-29 21:05:48 +00:00
|
|
|
**********************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "unicode/parsepos.h"
|
|
|
|
|
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
UOBJECT_DEFINE_RTTI_IMPLEMENTATION(ParsePosition)
|
|
|
|
|
|
|
|
ParsePosition::~ParsePosition() {}
|
|
|
|
|
2003-11-05 02:26:49 +00:00
|
|
|
ParsePosition *
|
|
|
|
ParsePosition::clone() const {
|
|
|
|
return new ParsePosition(*this);
|
|
|
|
}
|
|
|
|
|
2003-08-29 21:05:48 +00:00
|
|
|
U_NAMESPACE_END
|