00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifdef __cplusplus
00018 extern "C" {
00019 #endif
00020
00021 #ifndef BLOCKTREE_H
00022 #define BLOCKTREE_H
00023
00024 #include <render.h>
00025 #include <circular.h>
00026
00027 extern block_t *createBlocktree(Agraph_t * g, circ_state * state);
00028 extern void freeBlocktree(block_t *);
00029 #ifdef DEBUG
00030 extern void print_blocktree(block_t * sn, int depth);
00031 #endif
00032
00033 #endif
00034
00035 #ifdef __cplusplus
00036 }
00037 #endif