diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-19 14:10:40 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-20 06:07:32 +0100 |
commit | 9d8b90f654b5777f5c9d402fda445088f9fe374f (patch) | |
tree | 61c7c63b725046b9458fa444e9cfa1cb1b7d3969 /parser.h | |
parent | 6dbf365f144df4a55294244b1a1cd6f679992456 (diff) | |
download | sciteco-9d8b90f654b5777f5c9d402fda445088f9fe374f.tar.gz |
Scintilla command ES accepting string parameter: if empty, pop value from stack otherwise pass string
Diffstat (limited to 'parser.h')
-rw-r--r-- | parser.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -187,6 +187,11 @@ private: State *custom(gchar chr) throw (Error); }; +class StateScintilla : public StateExpectString { +private: + State *done(const gchar *str) throw (Error); +}; + class StateInsert : public StateExpectString { private: void initial(void) throw (Error); @@ -228,6 +233,7 @@ namespace States { extern StateFlowCommand flowcommand; extern StateCondCommand condcommand; extern StateECommand ecommand; + extern StateScintilla scintilla; extern StateInsert insert; extern StateSearch search; |