1
2 /**********
3 *
4 * Copyright (c) 2003, Division of Imaging Science and Biomedical Engineering,
5 * University of Manchester, UK. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without modification,
8 * are permitted provided that the following conditions are met:
9 *
10 * . Redistributions of source code must retain the above copyright notice,
11 * this list of conditions and the following disclaimer.
12 *
13 * . Redistributions in binary form must reproduce the above copyright notice,
14 * this list of conditions and the following disclaimer in the documentation
15 * and/or other materials provided with the distribution.
16 *
17 * . Neither the name of the University of Manchester nor the names of its
18 * contributors may be used to endorse or promote products derived from this
19 * software without specific prior written permission.
20 *
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
23 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
26 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 * POSSIBILITY OF SUCH DAMAGE.
33 *
34 **********
35 *
36 * Program : TINA
37 * File : $Source: /home/tina/cvs/tina-libs/tina/sys/sysGph_graph.h,v $
38 * Date : $Date: 2003/09/22 16:09:02 $
39 * Version : $Revision: 1.2 $
40 * CVS Id : $Id: sysGph_graph.h,v 1.2 2003/09/22 16:09:02 tony Exp $
41 *
42 * Notes :
43 *
44 *********
45 */
46
47 #ifndef TINA_SYS_GPH_GRAPH_HDR
48 #define TINA_SYS_GPH_GRAPH_HDR
49
50 #include <tina/sys/sys_GenDef.h>
51 #include <tina/sys/sys_GphDef.h>
52 #include <tina/sys/sys_LstDef.h>
53
54 #ifdef __cplusplus
55 extern "C" {
56 #endif /* __cplusplus */
57
58 void graph_list_set_status(List * list, int status);
59 void graph_list_consistent(List * list, Bool(*confunc) ());
60 List *graph_consistent_with(Graph_node *gn, List * list, Bool(*confunc) ());
61 List *graph_recover_list(List * list);
62 void *graph_ref(Graph_node * gn);
63 List *graph_make_list(List * list);
64 void graph_node_set(Graph_node * gn, void *ptr, int type);
65 Graph_node *graph_node_alloc(void *ptr, int type);
66
67 #ifdef __cplusplus
68 }
69 #endif /* __cplusplus */
70
71 #endif /* TINA_SYS_GPH_GRAPH_HDR */
72
73
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.