diff options
Diffstat (limited to 'src/parser.h')
-rw-r--r-- | src/parser.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parser.h b/src/parser.h index feffb95..9858136 100644 --- a/src/parser.h +++ b/src/parser.h @@ -101,7 +101,7 @@ public: set(StateStart); } - virtual Type input(gchar chr) = 0; + virtual bool input(gchar chr, Type &result) = 0; }; /* avoid circular dependency on qregisters.h */ @@ -126,7 +126,7 @@ public: void reset(void); - gchar *input(gchar chr); + bool input(gchar chr, gchar *&result); }; /* |