source: translator/ResolvExpr/AlternativePrinter.h @ 51b7345

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newstringwith_gc
Last change on this file since 51b7345 was 51b7345, checked in by Peter A. Buhr <pabuhr@…>, 10 years ago

initial commit

  • Property mode set to 100644
File size: 566 bytes
Line 
1/*
2 * This file is part of the Cforall project
3 *
4 * $Id: AlternativePrinter.h,v 1.2 2005/08/29 20:14:15 rcbilson Exp $
5 *
6 */
7
8#ifndef RESOLVEXPR_ALTERNATIVEPRINTER_H
9#define RESOLVEXPR_ALTERNATIVEPRINTER_H
10
11#include <iostream>
12
13#include "Alternative.h"
14#include "SymTab/Indexer.h"
15
16namespace ResolvExpr {
17
18class AlternativePrinter : public SymTab::Indexer
19{
20public:
21  AlternativePrinter( std::ostream &os );
22  virtual void visit(ExprStmt *exprStmt);
23
24private:
25  std::ostream &os;
26};
27
28} // namespace ResolvExpr
29
30#endif /* #ifndef RESOLVEXPR_ALTERNATIVEPRINTER_H */
Note: See TracBrowser for help on using the repository browser.