libdb/examples/cxx/excxx_repquote_gsg/SimpleConfigInfo.h

30 lines
402 B
C
Raw Normal View History

2011-09-13 17:44:24 +00:00
/*-
* 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()
{
}