diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-11 07:24:04 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-11 07:24:04 +0100 |
commit | ef8196da650f70758e1366cb7be1a799f1455f8e (patch) | |
tree | 7ac2b2e2e8e88aa80386b21a2c8975b0a06d2827 /parser.h | |
parent | 1962b1ff6571d3ed161abc44c7eb90cae7e85a1c (diff) | |
download | sciteco-ef8196da650f70758e1366cb7be1a799f1455f8e.tar.gz |
implemented conditionals (<n>"x...|...')
Diffstat (limited to 'parser.h')
-rw-r--r-- | parser.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -104,6 +104,14 @@ private: State *custom(gchar chr); }; +class StateCondCommand : public State { +public: + StateCondCommand(); + +private: + State *custom(gchar chr); +}; + class StateECommand : public State { public: StateECommand(); @@ -125,6 +133,7 @@ namespace States { extern StateStart start; extern StateControl control; extern StateFlowCommand flowcommand; + extern StateCondCommand condcommand; extern StateECommand ecommand; extern StateInsert insert; |