Added support for multiple values in filter statement -- separated by |, eg
[pazpar2-moved-to-github.git] / src / pazpar2.h
index 5b04d73..7a81537 100644 (file)
@@ -75,9 +75,14 @@ struct database {
     struct database *next;
 };
 
+struct database_criterion_value {
+    char *value;
+    struct database_criterion_value *next;
+};
+
 struct database_criterion {
     char *name;
-    char *value;
+    struct database_criterion_value *values;
     struct database_criterion *next;
 };