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/adjective_query.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/adjective_query.h') diff --git a/lib/adjective_query.h b/lib/adjective_query.h index 945e6bd..e6a6609 100644 --- a/lib/adjective_query.h +++ b/lib/adjective_query.h @@ -17,6 +17,7 @@ namespace verbly { adjective_query& has_rhyming_adjective(); adjective_query& has_rhyming_adverb(); adjective_query& has_rhyming_verb(); + adjective_query& with_stress(filter> _arg); adjective_query& requires_comparative_form(); adjective_query& requires_superlative_form(); @@ -66,6 +67,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