#ifndef QueryCallbacks_H
#define QueryCallbacks_H
+typedef struct HashVector HashVector;
+
enum NextState {
/**
* This state tells the "next" function that it should capture the
*/
int (*next)(Query *this,BindingTable *bt,enum NextState state);
/**
- * This callback function adds its binding names to the
+ * \brief This callback function adds its binding names to the
* hashvector.
*/
- void (*bindings)(Query *this,HashVector *hv);
+ void (*variables)(Query *this,HashVector *hv);
};
-
#endif