diff options
| author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2016-03-16 21:35:35 -0400 |
|---|---|---|
| committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2016-03-16 21:35:35 -0400 |
| commit | 8b1333d0e6e2b9a5014bdbff2987d899f5413fee (patch) | |
| tree | ab5c864b61cab267ad3118e8cbe637c151448aa5 /verbly/token.cpp | |
| parent | 3aceae8ab1eb5992110ea57a9479bbc3177feb21 (diff) | |
| download | furries-8b1333d0e6e2b9a5014bdbff2987d899f5413fee.tar.gz furries-8b1333d0e6e2b9a5014bdbff2987d899f5413fee.tar.bz2 furries-8b1333d0e6e2b9a5014bdbff2987d899f5413fee.zip | |
Added word derivational relationships (kind of eh at the moment) and moved verbly into its own directory
Diffstat (limited to 'verbly/token.cpp')
| -rw-r--r-- | verbly/token.cpp | 53 |
1 files changed, 0 insertions, 53 deletions
| diff --git a/verbly/token.cpp b/verbly/token.cpp deleted file mode 100644 index aa8f50e..0000000 --- a/verbly/token.cpp +++ /dev/null | |||
| @@ -1,53 +0,0 @@ | |||
| 1 | #include "verbly.h" | ||
| 2 | |||
| 3 | namespace verbly { | ||
| 4 | |||
| 5 | token::token(token::type _type) : _type(_type) | ||
| 6 | { | ||
| 7 | |||
| 8 | } | ||
| 9 | |||
| 10 | token::type token::token_type() const | ||
| 11 | { | ||
| 12 | return _type; | ||
| 13 | } | ||
| 14 | |||
| 15 | verb_token::verb_token(const class verb& _verb) : token(token::type::verb), _verb(&_verb) | ||
| 16 | { | ||
| 17 | |||
| 18 | } | ||
| 19 | |||
| 20 | const class verb& verb_token::verb() const | ||
| 21 | { | ||
| 22 | return *_verb; | ||
| 23 | } | ||
| 24 | |||
| 25 | verb_token& verb_token::inflect(verb_token::inflection infl) | ||
| 26 | { | ||
| 27 | _inflection = infl; | ||
| 28 | return *this; | ||
| 29 | } | ||
| 30 | |||
| 31 | bool verb_token::complete() const | ||
| 32 | { | ||
| 33 | return true; | ||
| 34 | } | ||
| 35 | |||
| 36 | std::string verb_token::compile() const | ||
| 37 | { | ||
| 38 | switch (_inflection) | ||
| 39 | { | ||
| 40 | case inflection::infinitive: return _verb->infinitive_form(); | ||
| 41 | case inflection::past_tense: return _verb->past_tense_form(); | ||
| 42 | case inflection::past_participle: return _verb->past_participle_form(); | ||
| 43 | case inflection::ing_form: return _verb->ing_form(); | ||
| 44 | case inflection::s_form: return _verb->s_form(); | ||
| 45 | } | ||
| 46 | } | ||
| 47 | |||
| 48 | token* verb_token::copy() const | ||
| 49 | { | ||
| 50 | return new verb_token(*this); | ||
| 51 | } | ||
| 52 | |||
| 53 | }; | ||
