]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/common/parsepos.cpp
ICU-6.2.4.tar.gz
[apple/icu.git] / icuSources / common / parsepos.cpp
diff --git a/icuSources/common/parsepos.cpp b/icuSources/common/parsepos.cpp
new file mode 100644 (file)
index 0000000..26f8820
--- /dev/null
@@ -0,0 +1,21 @@
+/*
+**********************************************************************
+*   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