aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/ILexer.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ILexer.h')
-rw-r--r--include/ILexer.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/ILexer.h b/include/ILexer.h
index b119ff649..e08b8701c 100644
--- a/include/ILexer.h
+++ b/include/ILexer.h
@@ -62,6 +62,14 @@ public:
virtual void * SCI_METHOD PrivateCall(int operation, void *pointer) = 0;
};
+class ILoader {
+public:
+ virtual int SCI_METHOD Release() = 0;
+ // Returns a status code from SC_STATUS_*
+ virtual int SCI_METHOD AddData(char *data, int length) = 0;
+ virtual void * SCI_METHOD ConvertToDocument() = 0;
+};
+
#ifdef SCI_NAMESPACE
}
#endif