output.h 279 B

1234567891011121314
  1. #ifndef OUTPUT_H
  2. #define OUTPUT_H
  3. #include "decl.h"
  4. namespace out{
  5. ostream &operator<<( ostream &out,CGExp *exp );
  6. ostream &operator<<( ostream &out,Type *type );
  7. ostream &operator<<( ostream &out,Decl *decl );
  8. ostream &operator<<( ostream &out,const DeclSeq &seq );
  9. }
  10. #endif