⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testexceptinclude.cpp

📁 mysql数据库源代码
💻 CPP
字号:
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 1997-2002 *	Sleepycat Software.  All rights reserved. * * $Id: TestExceptInclude.cpp,v 1.4 2002/07/05 22:17:59 dda Exp $ *//* We should be able to include cxx_except.h without db_cxx.h, * and use the DbException class.  We do need db.h to get a few * typedefs defined that the DbException classes use. * * This program does nothing, it's just here to make sure * the compilation works. */#include <db.h>#include <cxx_except.h>int main(int argc, char *argv[]){	DbException *dbe = new DbException("something");	DbMemoryException *dbme = new DbMemoryException("anything");	dbe = dbme;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -