source: tools/prettyprinter/filter.h @ 2b7afbd

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 2b7afbd was 7d4f6ed, checked in by Peter A. Buhr <pabuhr@…>, 7 years ago

remainder of pretty printer

  • Property mode set to 100644
File size: 919 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
[7d4f6ed]12// Last Modified On : Wed Jun 28 22:57:04 2017
13// Update Count     : 9
[fda8168]14//
15
16#ifndef __FILTER_H__
17#define __FILTER_H__
18
[7d4f6ed]19#include "parser.hh"
[fda8168]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
[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.