mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-17 01:26:25 +00:00
29 lines
402 B
C++
29 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()
|
|
{
|
|
}
|
|
|