source: tools/prettyprinter/filter.h @ 67fa9f9

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 67fa9f9 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
RevLine 
[fda8168]1//
[7d4f6ed]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.
[fda8168]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
[c9383ee]12// Last Modified On : Thu Jun 29 08:28:32 2017
13// Update Count     : 10
[fda8168]14//
15
16#ifndef __FILTER_H__
17#define __FILTER_H__
18
[7d4f6ed]19#include "parser.hh"
[fda8168]20
[c9383ee]21extern void (* filter)( Token * tree );                                 // pointer to filter for parse tree
22void freeTree( Token * tree );                                                  // free storage for parse tree
[fda8168]23
[c9383ee]24void Identity( Token * tree );                                                  // parse-tree filters
25void Parse_Tree( Token * tree );
26void Nocode( Token * tree );
27void LaTeX( Token * tree );
28void HTML( Token * tree );
[fda8168]29
[7d4f6ed]30#endif // __FILTER_H__
[fda8168]31
32// Local Variables: //
[7d4f6ed]33// mode: c++ //
34// tab-width: 4 //
35// compile-command: "make install" //
[fda8168]36// End: //
Note: See TracBrowser for help on using the repository browser.