00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifdef HAVE_CONFIG_H
00019 #include "config.h"
00020 #endif
00021
00022 #include "gvplugin_layout.h"
00023
00024 typedef enum { LAYOUT_DOT, } layout_type;
00025
00026 extern void dot_layout(graph_t * g);
00027 extern void dot_cleanup(graph_t * g);
00028
00029 gvlayout_engine_t dotgen_engine = {
00030 dot_layout,
00031 dot_cleanup,
00032 };
00033
00034 gvlayout_features_t dotgen_features = {
00035 LAYOUT_USES_RANKDIR,
00036 };
00037
00038 gvplugin_installed_t gvlayout_dot_layout[] = {
00039 {LAYOUT_DOT, "dot", 0, &dotgen_engine, &dotgen_features},
00040 {0, NULL, 0, NULL, NULL}
00041 };