//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// Microsoft
// Microsoft
//------------------------------------------------------------------------------
#pragma warning disable 618 // ignore obsolete warning about XmlDataDocument
namespace System.Xml {
internal sealed class XmlDataImplementation : XmlImplementation {
public XmlDataImplementation() : base() {
}
public override XmlDocument CreateDocument() {
return new XmlDataDocument( this );
}
}
}