010d6581e5
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@765 ea778897-0a13-0410-b9d1-a72fbfd435f5
65 lines
1.2 KiB
C
65 lines
1.2 KiB
C
/*
|
|
*
|
|
* Copyright (c) 2000-2001, Darren Hiebert
|
|
*
|
|
* This source code is released for free distribution under the terms of the
|
|
* GNU General Public License.
|
|
*
|
|
* External interface to all language parsing modules.
|
|
*
|
|
* To add a new language parser, you need only modify this single source
|
|
* file to add the name of the parser definition function.
|
|
*/
|
|
#ifndef _PARSERS_H
|
|
#define _PARSERS_H
|
|
|
|
/* Add the name of any new parser definition function here */
|
|
#define PARSER_LIST \
|
|
CParser, \
|
|
CppParser, \
|
|
JavaParser, \
|
|
MakefileParser, \
|
|
PascalParser, \
|
|
PerlParser, \
|
|
PhpParser, \
|
|
PythonParser, \
|
|
LaTeXParser, \
|
|
AsmParser, \
|
|
ConfParser, \
|
|
SqlParser, \
|
|
DocBookParser, \
|
|
CssParser, \
|
|
RubyParser, \
|
|
TclParser, \
|
|
ShParser, \
|
|
DParser, \
|
|
FortranParser, \
|
|
FeriteParser
|
|
|
|
/*
|
|
langType of each parser
|
|
0 CParser
|
|
1 CppParser
|
|
2 JavaParser
|
|
3 MakefileParser
|
|
4 PascalParser
|
|
5 PerlParser
|
|
6 PhpParser
|
|
7 PythonParser
|
|
8 LaTeXParser
|
|
9 AsmParser
|
|
10 ConfParser
|
|
11 SqlParser
|
|
12 DocBookParser
|
|
13 CssParser
|
|
14 RubyParser
|
|
15 TclParser
|
|
16 ShParser
|
|
17 DParser
|
|
18 FortranParser
|
|
19 FeriteParser
|
|
*/
|
|
#endif /* _PARSERS_H */
|
|
|
|
/* vi:set tabstop=8 shiftwidth=4: */
|