diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-11 07:00:00 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-11 07:00:00 +0100 |
commit | 1962b1ff6571d3ed161abc44c7eb90cae7e85a1c (patch) | |
tree | 41502f1bb2de1b34b1f549d3b5e75624bbd549e9 /parser.h | |
parent | aa5d7ac332d502eda854a69b3baa9bc6bb1293c6 (diff) | |
download | sciteco-1962b1ff6571d3ed161abc44c7eb90cae7e85a1c.tar.gz |
implemented F<, F>, F' and F| (flow) commands
Diffstat (limited to 'parser.h')
-rw-r--r-- | parser.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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; |