1234567891011121314151617181920212223 |
- 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<T>(QueryExpressionVisitor<T> visitor)
- {
- return visitor.Visit(this);
- }
- }
- }
|