1 /*!
2   @header BDB
3   @abstract Header including all public API's
4 
5   @availability OS X, GNUstep
6   @copyright (C) 2004, 2005, 2006 Oliver Langer
7 
8   Author: Oliver Langer
9 
10   This library is free software; you can redistribute it and/or
11   modify it under the terms of the GNU Lesser General Public
12   License as published by the Free Software Foundation; either
13   version 2.1 of the License, or (at your option) any later version.
14 
15   This library is distributed in the hope that it will be useful,
16   but WITHOUT ANY WARRANTY; without even the implied warranty of
17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18   Lesser General Public License for more details.
19 
20   You should have received a copy of the GNU Lesser General Public
21   License along with this library; if not, write to the Free Software
22   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
23 
24   <pre>
25   -------------------------------------------------------------------------
26   Modification history
27 
28   27.12.2004 ola     initial version
29   22.08.2006 ola     license changed
30   -------------------------------------------------------------------------
31   </pre>
32 */
33 #if !defined(__BDB_H)
34 #define __BDB_H
35 
36 #define LOGCONTEXT_BDB @"BDB"
37 
38 #include <BDB/BDBDatabaseConfig.h>
39 #include <BDB/BDBOperationStatus.h>
40 #include <BDB/BDBExceptions.h>
41 #include <BDB/BDBLockMode.h>
42 #include <BDB/BDBDatabase.h>
43 #include <BDB/BDBCursorConfig.h>
44 #include <BDB/BDBCursor.h>
45 
46 
47 #endif
48 
49