comparison toolboxes/graph_visualisation/include/graphviz/gvcommon.h @ 0:e9a9cd732c1e tip

first hg version after svn
author wolffd
date Tue, 10 Feb 2015 15:05:51 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:e9a9cd732c1e
1 /* $Id: gvcommon.h,v 1.14 2009/06/03 01:10:53 ellson Exp $ $Revision: 1.14 $ */
2 /* vim:set shiftwidth=4 ts=8: */
3
4 /**********************************************************
5 * This software is part of the graphviz package *
6 * http://www.graphviz.org/ *
7 * *
8 * Copyright (c) 1994-2004 AT&T Corp. *
9 * and is licensed under the *
10 * Common Public License, Version 1.0 *
11 * by AT&T Corp. *
12 * *
13 * Information and Software Systems Research *
14 * AT&T Research, Florham Park NJ *
15 **********************************************************/
16
17 #ifndef GVCOMMON_H
18 #define GVCOMMON_H
19
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23
24 typedef struct GVCOMMON_s {
25 char **info;
26 char *cmdname;
27 int verbose;
28 boolean config, auto_outfile_names;
29 void (*errorfn) (const char *fmt, ...);
30 const char **show_boxes; /* emit code for correct box coordinates */
31 const char **lib;
32
33 /* rendering state */
34 int viewNum; /* current view - 1 based count of views,
35 all pages in all layers */
36 const lt_symlist_t *builtins;
37 int demand_loading;
38 } GVCOMMON_t;
39
40 #ifdef __cplusplus
41 }
42 #endif
43 #endif /* GVCOMMON_H */