aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Catalogue.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-01-29 20:51:34 +1100
committerNeil <nyamatongwe@gmail.com>2021-01-29 20:51:34 +1100
commit54341053b273c905afa7503d8dadcc4c46a0d2d3 (patch)
treee25fe4ee686d7d59068f46746006d62a8ca30692 /src/Catalogue.h
parentba8b1a91525dd90f8fdcc75480f37815fecce2d2 (diff)
downloadscintilla-mirror-54341053b273c905afa7503d8dadcc4c46a0d2d3.tar.gz
Remove Lexilla files from Scintilla
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