diff options
Diffstat (limited to 'src/parser.h')
-rw-r--r-- | src/parser.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/parser.h b/src/parser.h index a1bfd75..fe8f08b 100644 --- a/src/parser.h +++ b/src/parser.h @@ -219,6 +219,14 @@ private: State *custom(gchar chr); }; +class StateEscape : public State { +public: + StateEscape(); + +private: + State *custom(gchar chr); +}; + class StateFCommand : public State { public: StateFCommand(); @@ -310,6 +318,7 @@ namespace States { extern StateStart start; extern StateControl control; extern StateASCII ascii; + extern StateEscape escape; extern StateFCommand fcommand; extern StateChangeDir changedir; extern StateCondCommand condcommand; |