~ubuntu-branches/ubuntu/lucid/codelite/lucid

« back to all changes in this revision

Viewing changes to sdk/ctags/parsers.h

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-02-10 02:27:55 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090210022755-m5692nfc1t5uf1w9
Tags: 1.0.2759+dfsg-0ubuntu1
* New upstream release (LP: #327216).
* debian/patches/series, debian/patches/00_fix-ia64-build.patch:
  + Dropped, applied upstream already.
* debian/patches/02_fix-desktop.patch,
  debian/patches/03_fix-sh.patch:
  + Refreshed to patch cleanly.
* debian/rules:
  + Make get-orig-source honour UPSTREAM_VERSION if set.
* debian/ctags-le.1,
  debian/codelite_indexer.1,
  debian/codelite.manpages:
  + Dropped ctags-le manpage, since ctags-le was replaced by
    codelite_indexer.
  + Added codelite_indexer manpage.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
*   $Id: parsers.h,v 1.12 2006/05/30 04:37:12 darren Exp $
3
 
*
4
 
*   Copyright (c) 2000-2003, Darren Hiebert
5
 
*
6
 
*   This source code is released for free distribution under the terms of the
7
 
*   GNU General Public License.
8
 
*
9
 
*   External interface to all language parsing modules.
10
 
*
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.
13
 
*/
14
 
#ifndef _PARSERS_H
15
 
#define _PARSERS_H
16
 
 
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
 
        EiffelParser, \
28
 
        ErlangParser, \
29
 
        FortranParser, \
30
 
        HtmlParser, \
31
 
        JavaParser, \
32
 
        JavaScriptParser, \
33
 
        LispParser, \
34
 
        LuaParser, \
35
 
        MakefileParser, \
36
 
        PascalParser, \
37
 
        PerlParser, \
38
 
        PhpParser, \
39
 
        PythonParser, \
40
 
        RexxParser, \
41
 
        RubyParser, \
42
 
        SchemeParser, \
43
 
        ShParser, \
44
 
        SlangParser, \
45
 
        SmlParser, \
46
 
        SqlParser, \
47
 
        TclParser, \
48
 
        VeraParser, \
49
 
        VerilogParser, \
50
 
        VimParser, \
51
 
        YaccParser
52
 
 
53
 
#endif  /* _PARSERS_H */
54
 
 
55
 
/* vi:set tabstop=4 shiftwidth=4: */