comparison trunk/src/docgen/misc/misc.d @ 729:ec8dd7b8bf0c

Updated graph type.
author Jari-Matti M?kel? <jmjm@iki.fi>
date Sun, 03 Feb 2008 19:43:53 +0200
parents 381044a3feac
children
comparison
equal deleted inserted replaced
728:41cad5ca4863 729:ec8dd7b8bf0c
12 DocGeneratorOptions *options(); 12 DocGeneratorOptions *options();
13 void generate(); 13 void generate();
14 } 14 }
15 15
16 interface GraphCache { 16 interface GraphCache {
17 char[] getCachedGraph(Object[] vertices, Object[] edges, GraphFormat format); 17 char[] getCachedGraph(Object graph, GraphFormat format);
18 void setCachedGraph(Object[] vertices, Object[] edges, GraphFormat format, char[] contents); 18 void setCachedGraph(Object graph, GraphFormat format, char[] contents);
19 } 19 }
20 20
21 interface CachingDocGenerator : DocGenerator { 21 interface CachingDocGenerator : DocGenerator {
22 GraphCache graphCache(); 22 GraphCache graphCache();
23 } 23 }