aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Catalogue.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Catalogue.h')
-rw-r--r--src/Catalogue.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/Catalogue.h b/src/Catalogue.h
deleted file mode 100644
index 05a1f1d29..000000000
--- a/src/Catalogue.h
+++ /dev/null
@@ -1,24 +0,0 @@
-// Scintilla source code edit control
-/** @file Catalogue.h
- ** Lexer infrastructure.
- ** Contains a list of LexerModules which can be searched to find a module appropriate for a
- ** particular language.
- **/
-// Copyright 1998-2010 by Neil Hodgson <neilh@scintilla.org>
-// The License.txt file describes the conditions under which this software may be distributed.
-
-#ifndef CATALOGUE_H
-#define CATALOGUE_H
-
-namespace Scintilla {
-
-class Catalogue {
-public:
- static const LexerModule *Find(int language);
- static const LexerModule *Find(const char *languageName) noexcept;
- static void AddLexerModule(LexerModule *plm);
-};
-
-}
-
-#endif