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 91b216b4 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 | |
---|
16 | namespace ResolvExpr { |
---|
17 | |
---|
18 | class AlternativePrinter : public SymTab::Indexer |
---|
19 | { |
---|
20 | public: |
---|
21 | AlternativePrinter( std::ostream &os ); |
---|
22 | virtual void visit(ExprStmt *exprStmt); |
---|
23 | |
---|
24 | private: |
---|
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.