summary refs log tree commit diff stats
path: root/lib/adverb_query.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/adverb_query.h')
-rw-r--r--lib/adverb_query.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/adverb_query.h b/lib/adverb_query.h index cf6c046..30e7400 100644 --- a/lib/adverb_query.h +++ b/lib/adverb_query.h
@@ -17,6 +17,7 @@ namespace verbly {
17 adverb_query& has_rhyming_adjective(); 17 adverb_query& has_rhyming_adjective();
18 adverb_query& has_rhyming_adverb(); 18 adverb_query& has_rhyming_adverb();
19 adverb_query& has_rhyming_verb(); 19 adverb_query& has_rhyming_verb();
20 adverb_query& with_stress(filter<std::vector<bool>> _arg);
20 21
21 adverb_query& requires_comparative_form(); 22 adverb_query& requires_comparative_form();
22 adverb_query& requires_superlative_form(); 23 adverb_query& requires_superlative_form();
@@ -53,6 +54,7 @@ namespace verbly {
53 bool _has_rhyming_adjective = false; 54 bool _has_rhyming_adjective = false;
54 bool _has_rhyming_adverb = false; 55 bool _has_rhyming_adverb = false;
55 bool _has_rhyming_verb = false; 56 bool _has_rhyming_verb = false;
57 filter<std::vector<bool>> _stress;
56 58
57 bool _requires_comparative_form = false; 59 bool _requires_comparative_form = false;
58 bool _requires_superlative_form = false; 60 bool _requires_superlative_form = false;