diff dmd/ddoc/Sections.d @ 105:e414dd80ebfa

moved Section
author Trass3r
date Tue, 31 Aug 2010 17:35:30 +0200
parents dmd/Section.d@10317f0c89a5
children 786ea1839396
line wrap: on
line diff
--- /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