summary refs log tree commit diff stats
path: root/lib/verb_query.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2016-05-30 11:31:20 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2016-05-30 11:31:20 -0400
commit6c2aca03c89b37e136ab4c7ea58b485dadc85bcd (patch)
treea9e562aa7e55b02d789755c61bbc4e5c1a8fb383 /lib/verb_query.h
parentf94d32242380b23b361f66eb021cad17c35acd8c (diff)
downloadverbly-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/verb_query.h')
-rw-r--r--lib/verb_query.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/verb_query.h b/lib/verb_query.h index 0ee5666..566ae37 100644 --- a/lib/verb_query.h +++ b/lib/verb_query.h
@@ -17,6 +17,7 @@ namespace verbly {
17 verb_query& has_rhyming_adjective(); 17 verb_query& has_rhyming_adjective();
18 verb_query& has_rhyming_adverb(); 18 verb_query& has_rhyming_adverb();
19 verb_query& has_rhyming_verb(); 19 verb_query& has_rhyming_verb();
20 verb_query& with_stress(filter<std::vector<bool>> _arg);
20 21
21 verb_query& has_frames(); 22 verb_query& has_frames();
22 23
@@ -36,6 +37,7 @@ namespace verbly {
36 bool _has_rhyming_adjective = false; 37 bool _has_rhyming_adjective = false;
37 bool _has_rhyming_adverb = false; 38 bool _has_rhyming_adverb = false;
38 bool _has_rhyming_verb = false; 39 bool _has_rhyming_verb = false;
40 filter<std::vector<bool>> _stress;
39 }; 41 };
40 42
41}; 43};