geany/tagmanager/parsers.h
Enrico Tröger 67e704ea6f new filetype Ruby
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@310 ea778897-0a13-0410-b9d1-a72fbfd435f5
2006-05-09 16:04:10 +00:00

38 lines
829 B
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, \
TexParser, \
AsmParser, \
ConfParser, \
SqlParser, \
DocBookParser, \
CssParser, \
RubyParser, \
ShParser
#endif /* _PARSERS_H */
/* vi:set tabstop=8 shiftwidth=4: */