summaryrefslogtreecommitdiff
path: root/cpp/src/XMLTransform/TransformDB.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2003-04-10 03:18:53 +0000
committerMark Spruiell <mes@zeroc.com>2003-04-10 03:18:53 +0000
commite0527c8d2d93e20eb43411368b5aaad4a6cfbd67 (patch)
tree986fff55f48a897103177bcb4b68728372a43a56 /cpp/src/XMLTransform/TransformDB.cpp
parentfixing IceXML integer parsing bugs (diff)
downloadice-e0527c8d2d93e20eb43411368b5aaad4a6cfbd67.tar.bz2
ice-e0527c8d2d93e20eb43411368b5aaad4a6cfbd67.tar.xz
ice-e0527c8d2d93e20eb43411368b5aaad4a6cfbd67.zip
adding statistics to evictor
Diffstat (limited to 'cpp/src/XMLTransform/TransformDB.cpp')
-rw-r--r--cpp/src/XMLTransform/TransformDB.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/XMLTransform/TransformDB.cpp b/cpp/src/XMLTransform/TransformDB.cpp
index 64b5c75e391..bd05221279e 100644
--- a/cpp/src/XMLTransform/TransformDB.cpp
+++ b/cpp/src/XMLTransform/TransformDB.cpp
@@ -178,10 +178,10 @@ main(int argc, char* argv[])
{
//
// This is the schema definition for the database used by the
- // Freeze Evictor (a map of Ice::Identity to Ice::Object).
- // Note that this requires that a schema file be created for
- // Identity.ice, and that it be loaded using --load-old and
- // --load-new.
+ // Freeze Evictor (a map of Ice::Identity to Freeze::ObjectRecord).
+ // Note that this requires that schema files be created for
+ // Identity.ice and ObjectRecord.ice, and that they be loaded using
+ // --load-old and --load-new.
//
static string schema =
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
@@ -192,7 +192,7 @@ main(int argc, char* argv[])
" targetNamespace=\"http://www.noorg.org/schemas\">"
" <xs:import namespace=\"http://www.zeroc.com/schemas\" schemaLocation=\"ice.xsd\"/>"
" <xs:element name=\"Key\" type=\"_internal.Ice.IdentityType\"/>"
- " <xs:element name=\"Value\" type=\"ice:_internal.objectType\"/></xs:schema>";
+ " <xs:element name=\"Value\" type=\"_internal.Freeze.ObjectRecordType\"/></xs:schema>";
transformer.transform(schema);
}