From 1962b1ff6571d3ed161abc44c7eb90cae7e85a1c Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Sun, 11 Nov 2012 07:00:00 +0100 Subject: implemented F<, F>, F' and F| (flow) commands --- parser.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'parser.h') diff --git a/parser.h b/parser.h index be72249..ed50e49 100644 --- a/parser.h +++ b/parser.h @@ -96,6 +96,14 @@ private: State *custom(gchar chr); }; +class StateFlowCommand : public State { +public: + StateFlowCommand(); + +private: + State *custom(gchar chr); +}; + class StateECommand : public State { public: StateECommand(); @@ -116,6 +124,7 @@ extern gint macro_pc; namespace States { extern StateStart start; extern StateControl control; + extern StateFlowCommand flowcommand; extern StateECommand ecommand; extern StateInsert insert; -- cgit v1.2.3