summary refs log tree commit diff stats
path: root/lib/token.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/token.h')
-rw-r--r--lib/token.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/token.h b/lib/token.h index 44d99cb..b22032b 100644 --- a/lib/token.h +++ b/lib/token.h
@@ -4,6 +4,7 @@
4#include <string> 4#include <string>
5#include <list> 5#include <list>
6#include <sstream> 6#include <sstream>
7#include <algorithm>
7 8
8namespace verbly { 9namespace verbly {
9 10
@@ -61,9 +62,9 @@ namespace verbly {
61 inflection _inflection = inflection::infinitive; 62 inflection _inflection = inflection::infinitive;
62 63
63 public: 64 public:
64 verb_token(const class verb& _verb); 65 verb_token(const verb& _verb);
65 66
66 const class verb& verb() const; 67 const verb& get_verb() const;
67 68
68 verb_token& inflect(inflection infl); 69 verb_token& inflect(inflection infl);
69 70
@@ -260,7 +261,7 @@ namespace verbly {
260 return m_theme; 261 return m_theme;
261 } 262 }
262 263
263 fillin_type fillin_type() const 264 fillin_type get_fillin_type() const
264 { 265 {
265 return m_fillin_type; 266 return m_fillin_type;
266 } 267 }