aboutsummaryrefslogtreecommitdiffhomepage
path: root/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/parser.h b/parser.h
index 2798469..edcece7 100644
--- a/parser.h
+++ b/parser.h
@@ -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;