f2bf7eda3bbc44a3cf9a0464842aa5d89127ec97
[rrq/rrqmisc.git] / vector / NotQuery.h
1 #ifndef NotQuery_H
2 #define NotQuery_H
3
4 #include <Query.h>
5
6 /**
7  * NotQuery represents logical negation.
8  *
9  * \extends Query
10  */
11 typedef struct NotQuery {
12     struct QueryCallbacks *def;
13     Query *query;
14 } NotQuery;
15
16 #endif