comparison src/docgen/sourcelisting/xmlwriter.d @ 806:bcb74c9b895c

Moved out files in the trunk folder to the root.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sun, 09 Mar 2008 00:12:19 +0100
parents trunk/src/docgen/sourcelisting/xmlwriter.d@33a4cb255fcc
children
comparison
equal deleted inserted replaced
805:a3fab8b74a7d 806:bcb74c9b895c
1 /**
2 * Author: Jari-Matti Mäkelä
3 * License: GPL3
4 */
5 module docgen.sourcelisting.xmlwriter;
6
7 import docgen.sourcelisting.writer;
8 //import dil.Parser;
9
10 /**
11 * TODO
12 */
13 class XMLWriter : AbstractWriter!(ListingWriterFactory), ListingWriter {
14 PageWriter writer;
15
16 this(ListingWriterFactory factory, PageWriter writer) {
17 super(factory);
18 this.writer = writer;
19 }
20
21 //void generateListing(Parser parser) { /* TODO */ }
22 void generateListing(InputStream input, OutputStream output, char[] moduleName) { /* TODO */ }
23 }