summary refs log tree commit diff stats
path: root/lib/noun_query.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/noun_query.h')
-rw-r--r--lib/noun_query.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/noun_query.h b/lib/noun_query.h index 6b5733f..19fbc60 100644 --- a/lib/noun_query.h +++ b/lib/noun_query.h
@@ -21,6 +21,8 @@ namespace verbly {
21 noun_query& with_prefix(filter<std::string> _f); 21 noun_query& with_prefix(filter<std::string> _f);
22 noun_query& with_suffix(filter<std::string> _f); 22 noun_query& with_suffix(filter<std::string> _f);
23 23
24 noun_query& requires_plural_form();
25
24 noun_query& with_complexity(int _arg); 26 noun_query& with_complexity(int _arg);
25 27
26 noun_query& is_hypernym(); 28 noun_query& is_hypernym();
@@ -104,6 +106,8 @@ namespace verbly {
104 106
105 int _with_complexity = unlimited; 107 int _with_complexity = unlimited;
106 108
109 bool _requires_plural_form = false;
110
107 bool _is_hypernym = false; 111 bool _is_hypernym = false;
108 filter<noun> _hypernym_of; 112 filter<noun> _hypernym_of;
109 filter<noun> _full_hypernym_of; 113 filter<noun> _full_hypernym_of;