Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ObjectSpaceNode.cs « System.Data.ObjectSpaces.Query « System.Data.ObjectSpaces « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4341f25426f9beafa6b53009550e712bfb07b6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
// System.Data.ObjectSpaces.Query.ObjectSpaceNode
//
//
// Author:
//     Richard Thombs (stony@stony.org)
//     Tim Coleman (tim@timcoleman.com)
//
// Copyright (C) Tim Coleman, 2003
//

#if NET_2_0

namespace System.Data.ObjectSpaces.Query {
	public class ObjectSpaceNode : Expression
	{
		#region Constructors

		public ObjectSpaceNode ()
			: base ()
		{
		}

		#endregion

		#region Methods

		[MonoTODO()]
		public override object Clone()
		{
			throw new NotImplementedException();
		}

		#endregion // Methods
	}
}

#endif