diff options
| author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2016-05-02 22:45:11 -0400 |
|---|---|---|
| committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2016-05-02 22:45:11 -0400 |
| commit | bd398509575af0362e53ce6b805eaa210406b9fd (patch) | |
| tree | e699624ca6934f591241d5dfa95a91b839ce6bc7 /lib/adjective_query.h | |
| parent | 499dbc410174602a5985bd75b600fbec5cd086f1 (diff) | |
| parent | 965a3206df834f846f2c560438c80a707dcee4cb (diff) | |
| download | verbly-bd398509575af0362e53ce6b805eaa210406b9fd.tar.gz verbly-bd398509575af0362e53ce6b805eaa210406b9fd.tar.bz2 verbly-bd398509575af0362e53ce6b805eaa210406b9fd.zip | |
Merge branch 'master' of https://github.com/hatkirby/verbly
Diffstat (limited to 'lib/adjective_query.h')
| -rw-r--r-- | lib/adjective_query.h | 10 |
1 files changed, 9 insertions, 1 deletions
| diff --git a/lib/adjective_query.h b/lib/adjective_query.h index b2859dc..030a494 100644 --- a/lib/adjective_query.h +++ b/lib/adjective_query.h | |||
| @@ -12,6 +12,10 @@ namespace verbly { | |||
| 12 | adjective_query& except(const adjective& _word); | 12 | adjective_query& except(const adjective& _word); |
| 13 | adjective_query& rhymes_with(const word& _word); | 13 | adjective_query& rhymes_with(const word& _word); |
| 14 | adjective_query& has_pronunciation(); | 14 | adjective_query& has_pronunciation(); |
| 15 | adjective_query& has_rhyming_noun(); | ||
| 16 | adjective_query& has_rhyming_adjective(); | ||
| 17 | adjective_query& has_rhyming_adverb(); | ||
| 18 | adjective_query& has_rhyming_verb(); | ||
| 15 | 19 | ||
| 16 | adjective_query& requires_comparative_form(); | 20 | adjective_query& requires_comparative_form(); |
| 17 | adjective_query& requires_superlative_form(); | 21 | adjective_query& requires_superlative_form(); |
| @@ -54,9 +58,13 @@ namespace verbly { | |||
| 54 | const data& _data; | 58 | const data& _data; |
| 55 | int _limit = unlimited; | 59 | int _limit = unlimited; |
| 56 | bool _random = false; | 60 | bool _random = false; |
| 57 | std::list<std::string> _rhymes; | 61 | std::list<rhyme> _rhymes; |
| 58 | std::list<adjective> _except; | 62 | std::list<adjective> _except; |
| 59 | bool _has_prn = false; | 63 | bool _has_prn = false; |
| 64 | bool _has_rhyming_noun = false; | ||
| 65 | bool _has_rhyming_adjective = false; | ||
| 66 | bool _has_rhyming_adverb = false; | ||
| 67 | bool _has_rhyming_verb = false; | ||
| 60 | 68 | ||
| 61 | bool _requires_comparative_form = false; | 69 | bool _requires_comparative_form = false; |
| 62 | bool _requires_superlative_form = false; | 70 | bool _requires_superlative_form = false; |
