changeset 105:e414dd80ebfa

moved Section
author Trass3r
date Tue, 31 Aug 2010 17:35:30 +0200
parents e6090d1aea7c
children 786ea1839396
files dmd/Section.d dmd/ddoc/Sections.d
diffstat 2 files changed, 20 insertions(+), 22 deletions(-) [+]
line wrap: on
line diff
--- a/dmd/Section.d	Tue Aug 31 16:22:22 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,22 +0,0 @@
-module dmd.Section;
-
-import dmd.DocComment;
-import dmd.Scope;
-import dmd.Dsymbol;
-import dmd.OutBuffer;
-
-class Section
-{
-    ubyte* name;
-    uint namelen;
-
-    ubyte* body_;
-    uint bodylen;
-
-    int nooutput;
-
-    void write(DocComment dc, Scope sc, Dsymbol s, OutBuffer buf)
-	{
-		assert(false);
-	}
-}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dmd/ddoc/Sections.d	Tue Aug 31 17:35:30 2010 +0200
@@ -0,0 +1,20 @@
+module dmd.Section;
+
+import dmd.DocComment;
+import dmd.Scope;
+import dmd.Dsymbol;
+import dmd.OutBuffer;
+
+class Section
+{
+    string name;
+
+    string body_;
+
+    int nooutput;
+
+    void write(DocComment dc, Scope sc, Dsymbol s, OutBuffer buf)
+	{
+		assert(false);
+	}
+}
\ No newline at end of file