mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-17 09:36:24 +00:00
30 lines
402 B
C
30 lines
402 B
C
|
/*-
|
||
|
* See the file LICENSE for redistribution information.
|
||
|
*
|
||
|
* Copyright (c) 2006, 2011 Oracle and/or its affiliates. All rights reserved.
|
||
|
*
|
||
|
* $Id$
|
||
|
*/
|
||
|
|
||
|
#include <db_cxx.h>
|
||
|
|
||
|
class SimpleConfigInfo {
|
||
|
public:
|
||
|
SimpleConfigInfo();
|
||
|
virtual ~SimpleConfigInfo();
|
||
|
|
||
|
public:
|
||
|
char* home;
|
||
|
};
|
||
|
|
||
|
|
||
|
SimpleConfigInfo::SimpleConfigInfo()
|
||
|
{
|
||
|
home = NULL;
|
||
|
}
|
||
|
|
||
|
SimpleConfigInfo::~SimpleConfigInfo()
|
||
|
{
|
||
|
}
|
||
|
|