blob: 28bc498222f6e1f1d5bb9cf23237beb4d6adc811 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*-
* 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;
}
|