mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
704cddfcbc
--HG-- extra : rebase_source : 2561787b6f9ae3dc626cb6bf76e6f78f6cd15664
22 lines
500 B
C++
22 lines
500 B
C++
/*
|
|
**********************************************************************
|
|
* Copyright (C) 2003-2003, International Business Machines
|
|
* Corporation and others. All Rights Reserved.
|
|
**********************************************************************
|
|
*/
|
|
|
|
#include "unicode/parsepos.h"
|
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
UOBJECT_DEFINE_RTTI_IMPLEMENTATION(ParsePosition)
|
|
|
|
ParsePosition::~ParsePosition() {}
|
|
|
|
ParsePosition *
|
|
ParsePosition::clone() const {
|
|
return new ParsePosition(*this);
|
|
}
|
|
|
|
U_NAMESPACE_END
|