using Ant.Query.QueryState; using Ant.Query.Visitors; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Ant.Query.QueryExpressions { class RootQueryExpression : QueryExpression { public RootQueryExpression(Type elementType) : base(QueryExpressionType.Root, elementType, null) { } public override T Accept(QueryExpressionVisitor visitor) { return visitor.Visit(this); } } }