浏览代码

*** empty log message ***

svn path=/trunk/mcs/; revision=1396
Daniel Weber 24 年之前
父节点
当前提交
398cb6574e

+ 17 - 0
mcs/class/System.XML/System.Xml.XPath/IXPathNavigable.cs

@@ -0,0 +1,17 @@
+// -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
+//
+// System.Xml.IXmlLineInfo.cs
+//
+// Author:
+//   Jason Diamond ([email protected])
+//
+// (C) 2001 Jason Diamond  http://injektilo.org/
+//
+
+namespace System.Xml.XPath
+{
+	public interface IXPathNavigable
+	{
+		XPathNavigator CreateNavigator();
+	}
+}

+ 17 - 0
mcs/class/System.XML/System.Xml.XPath/XPathNavigator.cs

@@ -0,0 +1,17 @@
+using System;
+
+namespace System.Xml.XPath
+{
+	/// <summary>
+	/// Summary description for XPathNavigator.
+	/// </summary>
+	public class XPathNavigator
+	{
+		public XPathNavigator()
+		{
+			//
+			// TODO: Add constructor logic here
+			//
+		}
+	}
+}