libdb/examples/cxx/excxx_repquote_gsg/SimpleConfigInfo.h
2011-09-13 13:44:24 -04:00

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()
{
}