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:
authorAtsushi Eno <atsushieno@gmail.com>2004-01-20 19:51:07 +0300
committerAtsushi Eno <atsushieno@gmail.com>2004-01-20 19:51:07 +0300
commit73472f0d348e0b7bf040b41e0a2c150a59351d0a (patch)
tree7a914e7c543e5c990b6572f16aa6365aba1cb1ca /mcs/class/System.Data
parentafe0fa29b67e7786f9801f1894d0f1ee9d633c44 (diff)
2004-01-20 Atsushi Enomoto <atsushi@ximian.com>
* Added missing TypedDataSetGenerator.cs. svn path=/trunk/mcs/; revision=22304
Diffstat (limited to 'mcs/class/System.Data')
-rw-r--r--mcs/class/System.Data/System.Data/ChangeLog4
-rwxr-xr-xmcs/class/System.Data/System.Data/TypedDataSetGenerator.cs37
2 files changed, 41 insertions, 0 deletions
diff --git a/mcs/class/System.Data/System.Data/ChangeLog b/mcs/class/System.Data/System.Data/ChangeLog
index fa775f1fc92..9c6133bc06c 100644
--- a/mcs/class/System.Data/System.Data/ChangeLog
+++ b/mcs/class/System.Data/System.Data/ChangeLog
@@ -1,3 +1,7 @@
+2004-01-20 Atsushi Enomoto <atsushi@ximian.com>
+
+ * Added missing TypedDataSetGenerator.cs.
+
2004-01-08 Eran Domb <erand@mainsoft.com>
* XmlSchemaMapper.cs : Fix a bug. Check if table already in DataSet before adding it.
diff --git a/mcs/class/System.Data/System.Data/TypedDataSetGenerator.cs b/mcs/class/System.Data/System.Data/TypedDataSetGenerator.cs
new file mode 100755
index 00000000000..d0ba7b80531
--- /dev/null
+++ b/mcs/class/System.Data/System.Data/TypedDataSetGenerator.cs
@@ -0,0 +1,37 @@
+//
+// TypedDataSetGenerator.cs
+//
+// Author:
+// Atsushi Enomoto <atsushi@ximian.com>
+//
+// (C)2004 Novell Inc.
+//
+using System;
+using System.CodeDom;
+using System.CodeDom.Compiler;
+using System.Collections;
+using System.Data;
+
+namespace System.Data
+{
+ public class TypedDataSetGenerator
+ {
+ public TypedDataSetGenerator ()
+ {
+ }
+
+ [MonoTODO]
+ public static void Generate (DataSet dataSet,
+ CodeNamespace codeNamespace,
+ ICodeGenerator codeGen)
+ {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public static string GenerateIdName (string name, ICodeGenerator codeGen)
+ {
+ throw new NotImplementedException ();
+ }
+ }
+}