36 #include <Inventor/C/basic.h> 45 typedef struct cc_rbptree_node cc_rbptree_node;
47 typedef struct cc_rbptree {
48 cc_rbptree_node * root;
51 void * inlinepointer[2];
64 typedef void cc_rbptree_traversecb(
void * p,
void * data,
void * closure);
65 COIN_DLL_API
void cc_rbptree_traverse(
const cc_rbptree * t, cc_rbptree_traversecb * func,
void * closure);
void cc_rbptree_init(cc_rbptree *t)
Definition: rbptree.cpp:361
SbBool cc_rbptree_remove(cc_rbptree *t, void *p)
Definition: rbptree.cpp:534
void cc_rbptree_debug(const cc_rbptree *t)
Definition: rbptree.cpp:619
uint32_t cc_rbptree_size(const cc_rbptree *t)
Definition: rbptree.cpp:563
void cc_rbptree_insert(cc_rbptree *t, void *p, void *data)
Definition: rbptree.cpp:412
void cc_rbptree_clean(cc_rbptree *t)
Definition: rbptree.cpp:398