diff options
-rw-r--r-- | goto.cpp | 4 | ||||
-rw-r--r-- | goto.h | 4 |
2 files changed, 8 insertions, 0 deletions
@@ -166,6 +166,10 @@ goto_table_clear(void) table.clear(); } +/* + * Command states + */ + StateLabel::StateLabel() : State() { transitions['\0'] = this; @@ -6,6 +6,10 @@ #include "sciteco.h" #include "parser.h" +/* + * Command states + */ + class StateLabel : public State { public: StateLabel(); |