]> git.saurik.com Git - apple/icu.git/blame - icuSources/common/parsepos.cpp
ICU-59117.0.1.tar.gz
[apple/icu.git] / icuSources / common / parsepos.cpp
CommitLineData
f3c0d7a5
A
1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
374ca955
A
3/*
4**********************************************************************
5* Copyright (C) 2003-2003, International Business Machines
6* Corporation and others. All Rights Reserved.
7**********************************************************************
8*/
9
10#include "unicode/parsepos.h"
11
12U_NAMESPACE_BEGIN
13
14UOBJECT_DEFINE_RTTI_IMPLEMENTATION(ParsePosition)
15
16ParsePosition::~ParsePosition() {}
17
18ParsePosition *
19ParsePosition::clone() const {
20 return new ParsePosition(*this);
21}
22
23U_NAMESPACE_END