diff options
| author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2016-05-30 11:31:20 -0400 |
|---|---|---|
| committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2016-05-30 11:31:20 -0400 |
| commit | 6c2aca03c89b37e136ab4c7ea58b485dadc85bcd (patch) | |
| tree | a9e562aa7e55b02d789755c61bbc4e5c1a8fb383 /lib/adverb_query.h | |
| parent | f94d32242380b23b361f66eb021cad17c35acd8c (diff) | |
| download | verbly-6c2aca03c89b37e136ab4c7ea58b485dadc85bcd.tar.gz verbly-6c2aca03c89b37e136ab4c7ea58b485dadc85bcd.tar.bz2 verbly-6c2aca03c89b37e136ab4c7ea58b485dadc85bcd.zip | |
Added pronunciation syllable count and stress structure
Also updated CMakeLists.txt such that including projects don't have to include sqlite3.
Diffstat (limited to 'lib/adverb_query.h')
| -rw-r--r-- | lib/adverb_query.h | 2 |
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; |
