Stubbed out System.Data.ObjectSpaces.Query
[mono.git] / mcs / class / System.Data.ObjectSpaces / System.Data.ObjectSpaces.Query / Filter.cs
1 //
2 // System.Data.ObjectSpaces.Query.Filter
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 Filter : Expression
15         {
16                 [MonoTODO()]
17                 public Filter(Expression source,Expression constraint) : base()
18                 {
19                         throw new NotImplementedException();
20                 }
21
22                 [MonoTODO()]
23                 public override object Clone()
24                 {
25                         throw new NotImplementedException();
26                 }
27         }
28 }
29
30 #endif