summary refs log tree commit diff stats
path: root/lib/token.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2016-03-17 01:27:54 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2016-03-17 01:27:54 -0400
commit365dda7937dae0b6edef1f498473c57c715eec1d (patch)
tree3865cf89a0f623c7701fd08cd96e46f18b5e1ca3 /lib/token.h
parentdc210ee6eba3b1d173808bd858113f6abd90bff1 (diff)
downloadverbly-365dda7937dae0b6edef1f498473c57c715eec1d.tar.gz
verbly-365dda7937dae0b6edef1f498473c57c715eec1d.tar.bz2
verbly-365dda7937dae0b6edef1f498473c57c715eec1d.zip
Renamed some class members that shared names with classes
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 }