error.hh
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:0k
源码类别:

DVD

开发平台:

Unix_Linux

  1. /*
  2.    File: error.hh
  3.    Description:
  4.    By: Alex Theo de Jong
  5.    Created: September 1995
  6. */
  7. #ifndef __error_hh__
  8. #define __error_hh__
  9. #define MAX_LEX_ERR   10
  10. #define msg(s){ printf(s); fflush(stdout); }
  11. #define message(s){ cout << s << "n"; cout.flush(); }
  12. //  fflush(stdout); }
  13. #define warning(s)  { printf("warning - %sn", s); }
  14. // fflush(stdout); }
  15. #define error(s) { cerr << s << "n"; cerr.flush(); }
  16. //  printf("error - %sn", s); fflush(stdout); }
  17. #endif