aboutsummaryrefslogtreecommitdiffhomepage
path: root/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/parser.h b/parser.h
index 936e530..3047c50 100644
--- a/parser.h
+++ b/parser.h
@@ -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;