stdexcept.h
来自「本系统采用VC开发.可实现点云数据的处理,图像缩放,生成曲面.」· C头文件 代码 · 共 33 行
H
33 行
/* stdexcept.h -- Include file for exception handling (see 19.1)*/#ifndef _STDEXCEPT_H#define _STDEXCEPT_H#include <stdexcept>#ifdef _NAMESPACESusing std::exception;using std::bad_exception;using std::logic_error;using std::runtime_error;using std::domain_error;using std::invalid_argument;using std::length_error;using std::out_of_range;using std::range_error;using std::overflow_error;using std::underflow_error;using std::terminate_handler;using std::set_terminate;using std::terminate;using std::unexpected_handler;using std::set_unexpected;using std::unexpected;#endif /* _NAMESPACES */#endif /* _STDEXCEPT_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?