stdexcept.h
上传用户:kellyonhid
上传日期:2013-10-12
资源大小:932k
文件大小:1k
源码类别:

3D图形编程

开发平台:

Visual C++

  1. /* 
  2. stdexcept.h -- Include file for exception handling (see 19.1)
  3. */
  4. #ifndef _STDEXCEPT_H
  5. #define _STDEXCEPT_H
  6. #include <stdexcept>
  7. #ifdef _NAMESPACES
  8. using std::exception;
  9. using std::bad_exception;
  10. using std::logic_error;
  11. using std::runtime_error;
  12. using std::domain_error;
  13. using std::invalid_argument;
  14. using std::length_error;
  15. using std::out_of_range;
  16. using std::range_error;
  17. using std::overflow_error;
  18. using std::underflow_error;
  19. using std::terminate_handler;
  20. using std::set_terminate;
  21. using std::terminate;
  22. using std::unexpected_handler;
  23. using std::set_unexpected;
  24. using std::unexpected;
  25. #endif /* _NAMESPACES */
  26. #endif /* _STDEXCEPT_H */