stdexcept
来自「Montavista Linux 下的多平台编译软件xdc」· 代码 · 共 43 行
TXT
43 行
/*****************************************************************************//* stdexcept v6.0.3 *//* Copyright (c) 1996-2006 Texas Instruments Incorporated *//*****************************************************************************/#ifdef __EXCEPTIONS#ifndef _STDEXCEPT_STDH#define _STDEXCEPT_STDH/* This lets users disable the EDG supplied exception classes. */#ifndef __NO_EDG_EXCEPTION_CLASSES#ifdef __EDG_RUNTIME_USES_NAMESPACESnamespace std {#endif /* ifdef __EDG_RUNTIME_USES_NAMESPACES */ class exception { public: exception() throw(); exception(const exception&) throw(); exception& operator=(const exception&) throw(); virtual ~exception() throw(); virtual const char* what() const throw(); };#ifdef __EDG_RUNTIME_USES_NAMESPACES} /* namespace std */#ifdef __EDG_IMPLICIT_USING_STD/* Implicitly include a using directive for the STD namespace when this preprocessing flag is TRUE. */using namespace std;#endif /* ifdef __EDG_IMPLICIT_USING_STD */#endif /* ifdef __EDG_RUNTIME_USES_NAMESPACES */#endif /* ifndef __NO_EDG_EXCEPTION_CLASSES */#endif /* _STDEXCEPT_STDH */#else /* __EXCEPTIONS */#ifndef _STDEXCEPT#define _STDEXCEPT#endif#endif /* __EXCEPTIONS */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?