// // System.Data.ObjectSpaces.Query.Parent // // // Author: // Richard Thombs (stony@stony.org) // #if NET_1_2 using System; namespace System.Data.ObjectSpaces.Query { [MonoTODO()] public class Parent : Context { [MonoTODO()] public Parent(Context sContext) : base() { throw new NotImplementedException(); } [MonoTODO()] public override object Clone() { throw new NotImplementedException(); } [MonoTODO()] public override bool IsArithmetic() { throw new NotImplementedException(); } [MonoTODO()] public override bool IsBoolean() { throw new NotImplementedException(); } [MonoTODO()] public override bool IsFilter() { throw new NotImplementedException(); } [MonoTODO()] public int Level { get { throw new NotImplementedException(); } } [MonoTODO()] public override NodeType NodeType { get { throw new NotImplementedException(); } } [MonoTODO()] public Context Source { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } } } #endif