RTree UDI support (written by David Vaz).

This commit is contained in:
Vitor Santos Costa
2009-02-20 11:44:00 +00:00
parent 94ebb90719
commit 84ebc2b2f2
7 changed files with 814 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#ifndef _RTREE_UDI_I_
#define _RTREE_UDI_I_
#define NARGS 5
struct Control
{
int arg;
void *pred;
rtree_t tree;
};
typedef struct Control control_t[NARGS];
struct CallbackM
{
clause_list_t cl;
void * pred;
};
typedef struct CallbackM * callback_m_t;
#endif /* _RTREE_UDI_I_ */