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/adverb_query.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/adverb_query.h') 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 { adverb_query& has_rhyming_adjective(); adverb_query& has_rhyming_adverb(); adverb_query& has_rhyming_verb(); + adverb_query& with_stress(filter> _arg); adverb_query& requires_comparative_form(); adverb_query& requires_superlative_form(); @@ -53,6 +54,7 @@ namespace verbly { bool _has_rhyming_adjective = false; bool _has_rhyming_adverb = false; bool _has_rhyming_verb = false; + filter> _stress; bool _requires_comparative_form = false; bool _requires_superlative_form = false; -- cgit 1.4.1