From 6c2aca03c89b37e136ab4c7ea58b485dadc85bcd Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Mon, 30 May 2016 11:31:20 -0400 Subject: Added pronunciation syllable count and stress structure Also updated CMakeLists.txt such that including projects don't have to include sqlite3. --- lib/verb_query.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/verb_query.h') 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 { verb_query& has_rhyming_adjective(); verb_query& has_rhyming_adverb(); verb_query& has_rhyming_verb(); + verb_query& with_stress(filter> _arg); verb_query& has_frames(); @@ -36,6 +37,7 @@ namespace verbly { bool _has_rhyming_adjective = false; bool _has_rhyming_adverb = false; bool _has_rhyming_verb = false; + filter> _stress; }; }; -- cgit 1.4.1