]> git.saurik.com Git - wxWidgets.git/blob - src/stc/scintilla/src/Catalogue.h
Open debugger at the location of failing assert, if possible.
[wxWidgets.git] / src / stc / scintilla / src / Catalogue.h
1 // Scintilla source code edit control
2 /** @file Catalogue.h
3 ** Lexer infrastructure.
4 **/
5 // Copyright 1998-2010 by Neil Hodgson <neilh@scintilla.org>
6 // The License.txt file describes the conditions under which this software may be distributed.
7
8 #ifndef CATALOGUE_H
9 #define CATALOGUE_H
10
11 #ifdef SCI_NAMESPACE
12 namespace Scintilla {
13 #endif
14
15 class Catalogue {
16 public:
17 static const LexerModule *Find(int language);
18 static const LexerModule *Find(const char *languageName);
19 static void AddLexerModule(LexerModule *plm);
20 };
21
22 #ifdef SCI_NAMESPACE
23 }
24 #endif
25
26 #endif