2005-11-22 12:26:26 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* 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, \
|
2006-05-16 19:04:04 +00:00
|
|
|
LaTeXParser, \
|
2006-02-22 13:49:08 +00:00
|
|
|
AsmParser, \
|
2005-11-27 20:39:57 +00:00
|
|
|
ConfParser, \
|
2006-02-22 13:49:08 +00:00
|
|
|
SqlParser, \
|
2006-01-11 18:50:44 +00:00
|
|
|
DocBookParser, \
|
2006-05-09 16:04:10 +00:00
|
|
|
CssParser, \
|
|
|
|
RubyParser, \
|
2006-05-16 19:04:04 +00:00
|
|
|
TclParser, \
|
2005-11-22 12:26:26 +00:00
|
|
|
ShParser
|
|
|
|
|
|
|
|
#endif /* _PARSERS_H */
|
|
|
|
|
|
|
|
/* vi:set tabstop=8 shiftwidth=4: */
|