Stubbed out System.Data.ObjectSpaces.Query
[mono.git] / mcs / class / System.Data.ObjectSpaces / System.Data.ObjectSpaces.Query / RelTraversal.cs
1 //
2 // System.Data.ObjectSpaces.Query.RelTraversal
3 //
4 //
5 // Author:
6 //      Richard Thombs (stony@stony.org)
7 //
8
9 #if NET_1_2
10
11 namespace System.Data.ObjectSpaces.Query
12 {
13         [MonoTODO()]
14         public class RelTraversal : Expression
15         {
16                 [MonoTODO()]
17                 public RelTraversal(RelTraversalDirection direction) : base()
18                 {
19                         throw new NotImplementedException();
20                 }
21
22                 [MonoTODO()]
23                 public RelTraversal(string relName,RelTraversalDirection direction) : base()
24                 {
25                         throw new NotImplementedException();
26                 }
27
28                 [MonoTODO()]
29                 public override object Clone()
30                 {
31                         throw new NotImplementedException();
32                 }
33         }
34 }
35
36 #endif