mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
21 lines
500 B
C++
21 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
|