Updated Spanish translation
[anjuta-git-plugin.git] / tagmanager / parsers.h
blob05338ca14037bc3dcdc4d89f376a3271e8fe7f70
1 /*
2 * $Id$
4 * Copyright (c) 2000-2003, Darren Hiebert
6 * This source code is released for free distribution under the terms of the
7 * GNU General Public License.
9 * External interface to all language parsing modules.
11 * To add a new language parser, you need only modify this single source
12 * file to add the name of the parser definition function.
14 #ifndef _PARSERS_H
15 #define _PARSERS_H
17 /* Add the name of any new parser definition function here */
18 #define PARSER_LIST \
19 AsmParser, \
20 AspParser, \
21 AwkParser, \
22 BetaParser, \
23 CParser, \
24 CppParser, \
25 CsharpParser, \
26 CobolParser, \
27 FortranParser, \
28 HtmlParser, \
29 JavaParser, \
30 JavaScriptParser, \
31 LispParser, \
32 LuaParser, \
33 MakefileParser, \
34 PascalParser, \
35 PerlParser, \
36 PhpParser, \
37 PythonParser, \
38 RexxParser, \
39 RubyParser, \
40 SchemeParser, \
41 ShParser, \
42 SlangParser, \
43 SmlParser, \
44 SqlParser, \
45 TclParser, \
46 VeraParser, \
47 VerilogParser, \
48 VimParser, \
49 YaccParser
51 #endif /* _PARSERS_H */
53 /* vi:set tabstop=4 shiftwidth=4: */