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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mcs/class/System.Data/System.Data/ChangeLog4
-rw-r--r--mcs/class/System.Data/System.Data/Index.cs20
2 files changed, 24 insertions, 0 deletions
diff --git a/mcs/class/System.Data/System.Data/ChangeLog b/mcs/class/System.Data/System.Data/ChangeLog
index d6f15d3cefa..e0a0643f8a5 100644
--- a/mcs/class/System.Data/System.Data/ChangeLog
+++ b/mcs/class/System.Data/System.Data/ChangeLog
@@ -1,3 +1,7 @@
+2004-03-03 Atsushi Enomoto <atsushi@ximian.com>
+
+ * Index.cs : justa build fix.
+
2004-03-03 Eran Domb <erand@mainsoft.com>
* Index.cs : Added.
diff --git a/mcs/class/System.Data/System.Data/Index.cs b/mcs/class/System.Data/System.Data/Index.cs
index 7655e24c384..ed6c596bb3d 100644
--- a/mcs/class/System.Data/System.Data/Index.cs
+++ b/mcs/class/System.Data/System.Data/Index.cs
@@ -3,6 +3,26 @@ using System.Collections;
namespace System.Data
{
+ internal class Node
+ {
+ public Node (DataRow row) {
+ }
+
+ public Node Parent;
+ public Node Left;
+ public Node Right;
+ public DataRow Row;
+ public int GetBalance () { return 0; }
+ public void SetBalance (int i) { }
+ public bool From () { return false; }
+ public void Delete () {}
+ }
+
+ internal class DBComparerFactory
+ {
+ public static IComparer GetComparer (Type t, bool b) { return null; }
+ }
+
/// <summary>
/// Summary description for Index.
/// </summary>