source: vis_dev/vl2mv-2.3/src/parser/vl_fg_types.h @ 64

Last change on this file since 64 was 18, checked in by cecile, 13 years ago

vl2mv added

File size: 1.4 KB
Line 
1/*
2
3  Copyright (c) 1992, 1993
4        Regents of the University of California
5  All rights reserved.
6
7  Use and copying of this software and preparation of derivative works
8  based upon this software are permitted.  However, any distribution of
9  this software or derivative works must include the above copyright
10  notice.
11
12  This software is made available AS IS, and neither the Electronics
13  Research Laboratory or the Universify of California make any
14  warranty about the software, its performance or its conformity to
15  any specification.
16
17  Author: Szu-Tsung Cheng, stcheng@ic.Berkeley.EDU
18          10/92
19          10/93
20
21  $Header: /projects/development/hsv/CVSRepository/vl2mv/src/parser/vl_fg_types.h,v 1.1.1.1 2001/07/09 23:22:42 fabio Exp $
22
23
24*/
25
26
27typedef struct fg_node_info {
28    short type;             
29    char *data;             
30                             
31    char *loc;               
32    ctrlNetNode *SRFSMnode; 
33} fg_node_info;
34
35typedef struct fg_arc_info {
36    short type; 
37    char *data;             
38                             
39} fg_arc_info;
40
41typedef struct fg_graph_info {
42    short type;
43    int fg_id;               
44    vertex_t *init_node;
45    int pause_lo, pause_hi; 
46    lsList pause_list;       
47                             
48                             
49                             
50                             
51                             
52                               
53                             
54} fg_graph_info;
Note: See TracBrowser for help on using the repository browser.