// // IXPathChangeNavigator.cs // // Author: // Atsushi Enomoto // #if NET_1_2 using System; using System.Collections; namespace System.Xml { public interface IXPathChangeNavigator { void AcceptChange (); void RejectChange (); IEnumerable SelectChanges (XmlChangeFilters changeType); IEnumerable SelectChanges (); } } #endif