ooexception.h
来自「c语言是面向过程的程序语言」· C头文件 代码 · 共 33 行
H
33 行
#ifndef OOEXCEPTIONS_H#define OOEXCEPTIONS_H/* ****************************** * Object Oriented Programming in C * * Author: Laurent Deniau, Laurent.Deniau@cern.ch * * For more information, please see the paper: * http://home.cern.ch/ldeniau/html/oopc/oopc.html * ****************************** */#include <exception.h>typedef enum { ooc_invalid_exception=0, ooc_bad_alloc, /* thrown by alloc */ ooc_bad_cast, /* not used by dynamic_cast */ ooc_bad_typeid, /* not used by typeid */ ooc_bad_exception, /* not used */ /* last ooc exception id */ ooc_last_exception} ooc_exception;#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?