refactoring
[rrq/rrqmisc.git] / vector / View.h
1 #ifndef View_H
2 #define View_H
3
4 /**
5  * \brief Create a ViewQuery for monitoring the binding stream of a
6  * sub query.
7  *
8  * \param q is the sub query to monitor.
9  *
10  * \returns the ViewQuery qua Query.
11  *
12  * A ViewQuery tracks the binding succession of a sub query, through
13  * each initial, repeated subsequent and final restore sequence, in
14  * order to tell if a binding is new or lost relative to the previous
15  * sequence. The ViewQuery is
16  */
17 extern Query *View_create(Query *q);
18
19 #endif