TestExceptInclude.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1997-2002
  5.  * Sleepycat Software.  All rights reserved.
  6.  *
  7.  * $Id: TestExceptInclude.cpp,v 1.4 2002/07/05 22:17:59 dda Exp $
  8.  */
  9. /* We should be able to include cxx_except.h without db_cxx.h,
  10.  * and use the DbException class.  We do need db.h to get a few
  11.  * typedefs defined that the DbException classes use.
  12.  *
  13.  * This program does nothing, it's just here to make sure
  14.  * the compilation works.
  15.  */
  16. #include <db.h>
  17. #include <cxx_except.h>
  18. int main(int argc, char *argv[])
  19. {
  20. DbException *dbe = new DbException("something");
  21. DbMemoryException *dbme = new DbMemoryException("anything");
  22. dbe = dbme;
  23. }