diff options
| author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-08 04:39:28 +0100 |
|---|---|---|
| committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-08 04:39:28 +0100 |
| commit | 779bb1654d20af6139f17bdaf9a38bcb75d20965 (patch) | |
| tree | cc403555d0402e369fbaa9770cc4dbe4a383ea1d /parser.h | |
| parent | b58893781bcb8feeba8c4743ae3d5e6083dc010e (diff) | |
EX command
Diffstat (limited to 'parser.h')
| -rw-r--r-- | parser.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -76,6 +76,14 @@ private: State *custom(gchar chr); }; +class StateECommand : public State { +public: + StateECommand(); + +private: + State *custom(gchar chr); +}; + class StateInsert : public StateExpectString { private: void initial(void); @@ -91,6 +99,7 @@ extern struct States { StateStart start; StateLabel label; StateControl control; + StateECommand ecommand; StateInsert insert; } states; |
