diff options
Diffstat (limited to 'parser.h')
-rw-r--r-- | parser.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -110,8 +110,11 @@ class StateExpectString : public State { mode(MODE_NORMAL), toctl(false) {} } machine; + bool string_building; + public: - StateExpectString() : State() {} + StateExpectString(bool _building = true) + : State(), string_building(_building) {} private: gchar *machine_input(gchar key) throw (Error); |