source: tools/prettyprinter/filter.h@ c9383ee

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since c9383ee was c9383ee, checked in by Peter A. Buhr <pabuhr@…>, 8 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.