diff trunk/src/docgen/sourcelisting/xmlwriter.d @ 444:0bda71dc9c4f

More document template and source listing code.
author Jari-Matti M?kel? <jmjm@iki.fi>
date Wed, 17 Oct 2007 03:12:46 +0300
parents
children c82b36b9cadf
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/trunk/src/docgen/sourcelisting/xmlwriter.d	Wed Oct 17 03:12:46 2007 +0300
@@ -0,0 +1,25 @@
+/**
+ * Author: Jari-Matti Mäkelä
+ * License: GPL3
+ */
+module docgen.sourcelisting.xmlwriter;
+
+public import docgen.sourcelisting.writer;
+import dil.Parser;
+import tango.io.protocol.Writer : Writer;
+import tango.io.FileConduit : FileConduit;
+import tango.io.Print: Print;
+import tango.text.convert.Layout : Layout;
+
+/**
+ * TODO
+ */
+class XMLWriter : AbstractListingWriter {
+  this(ListingWriterFactory factory, OutputStream[] outputs) {
+    super(factory, outputs);
+    assert(outputs.length == 2, "Wrong number of outputs");
+  }
+
+  void generateListing(Parser parser) { /* TODO */ }
+  void generateListing(InputStream input) { /* TODO */ }
+}
\ No newline at end of file