Bring in a trimmed down gcc-3.4-20040618.
[dragonfly.git] / contrib / gcc-3.4 / gcc / cp / cxx-pretty-print.h
1 /* Interface for the GNU C++ pretty-printer.
2    Copyright (C) 2003 Free Software Foundation, Inc.
3    Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net>
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING.  If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.  */
21
22 #ifndef GCC_CXX_PRETTY_PRINT_H
23 #define GCC_CXX_PRETTY_PRINT_H
24
25 #include "c-pretty-print.h"
26
27 #undef pp_c_base
28 #define pp_c_base(PP) (&(PP)->c_base)
29
30 typedef enum
31 {
32   /* Ask for an qualified-id.  */
33   pp_cxx_flag_default_argument = 1 << pp_c_flag_last_bit
34   
35 } cxx_pretty_printer_flags;
36
37 typedef struct
38 {
39   c_pretty_printer c_base;
40   /* This is the enclosing scope of the entity being pretty-printed.  */
41   tree enclosing_scope;
42 } cxx_pretty_printer;
43
44 void pp_cxx_pretty_printer_init (cxx_pretty_printer *);
45
46 void pp_cxx_declaration (cxx_pretty_printer *, tree);
47 void pp_cxx_function_definition (cxx_pretty_printer *, tree);
48 void pp_cxx_canonical_template_parameter (cxx_pretty_printer *, tree);
49 void pp_cxx_statement (cxx_pretty_printer *, tree);
50
51
52 #endif /* GCC_CXX_PRETTY_PRINT_H */