diff options
Diffstat (limited to 'goto.h')
-rw-r--r-- | goto.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -18,8 +18,14 @@ private: State *custom(gchar chr); }; +class StateGotoCmd : public StateExpectString { +private: + State *done(const gchar *str); +}; + namespace States { - extern StateLabel label; + extern StateLabel label; + extern StateGotoCmd gotocmd; } void goto_table_clear(void); |