source: tools/prettyprinter/filter.h @ ae47a23

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since ae47a23 was c9383ee, checked in by Peter A. Buhr <pabuhr@…>, 7 years ago

update input file and formatting

  • Property mode set to 100644
File size: 936 bytes
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// filter.h --
8//
9// Author           : Peter A. Buhr
10// Created On       : Tue Apr  9 22:31:18 2002
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Thu Jun 29 08:28:32 2017
13// Update Count     : 10
14//
15
16#ifndef __FILTER_H__
17#define __FILTER_H__
18
19#include "parser.hh"
20
21extern void (* filter)( Token * tree );                                 // pointer to filter for parse tree
22void freeTree( Token * tree );                                                  // free storage for parse tree
23
24void Identity( Token * tree );                                                  // parse-tree filters
25void Parse_Tree( Token * tree );
26void Nocode( Token * tree );
27void LaTeX( Token * tree );
28void HTML( Token * tree );
29
30#endif // __FILTER_H__
31
32// Local Variables: //
33// mode: c++ //
34// tab-width: 4 //
35// compile-command: "make install" //
36// End: //
Note: See TracBrowser for help on using the repository browser.