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/noun_query.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/noun_query.h') diff --git a/lib/noun_query.h b/lib/noun_query.h index eb4a57c..74df260 100644 --- a/lib/noun_query.h +++ b/lib/noun_query.h @@ -17,6 +17,7 @@ namespace verbly { noun_query& has_rhyming_adjective(); noun_query& has_rhyming_adverb(); noun_query& has_rhyming_verb(); + noun_query& with_stress(filter> _arg); noun_query& with_singular_form(std::string _arg); noun_query& with_prefix(filter _f); @@ -100,6 +101,7 @@ namespace verbly { bool _has_rhyming_adjective = false; bool _has_rhyming_adverb = false; bool _has_rhyming_verb = false; + filter> _stress; std::list _with_singular_form; filter _with_prefix; -- cgit 1.4.1