#ifndef ALTERNATIVEPRINTER_H #define ALTERNATIVEPRINTER_H #include #include "Alternative.h" #include "SymTab/Indexer.h" namespace ResolvExpr { class AlternativePrinter : public SymTab::Indexer { public: AlternativePrinter( std::ostream &os ); virtual void visit(ExprStmt *exprStmt); private: std::ostream &os; }; } // namespace ResolvExpr #endif // ALTERNATIVEPRINTER_H